-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pycentral"
dynamic = ["version"]
description = "HPE Aruba Networking Central Python Package"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
authors = [{ name = "aruba-automation", email = "aruba-automation@hpe.com" }]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: System Administrators",
"Topic :: System :: Networking",
"Development Status :: 4 - Beta",
]
dependencies = [
"PyYAML==6.0.3",
"oauthlib==3.2.2",
"requests_oauthlib==2.0.0",
"pytz==2025.2",
"protobuf==6.33.5",
"websocket-client==1.9.0",
"httpx[http2]==0.28.1",
"requests==2.32.5"
]
[project.optional-dependencies]
colorLog = ["colorlog"]
[project.urls]
Documentation = "https://pycentral.readthedocs.io/en/v2/"
Repository = "https://github.com/aruba/pycentral/"
Issues = "https://github.com/aruba/pycentral/issues"
[tool.setuptools.packages.find]
exclude = ["docs", "tests", "sample_scripts"]
[tool.setuptools.dynamic]
version = {attr = "pycentral.__version__"}