-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
32 lines (27 loc) · 995 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=62.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cloudvision"
version = "1.21.1"
dynamic = ["dependencies", "optional-dependencies"]
description = "A Python library for Arista's CloudVision APIs and Provisioning Action integrations."
requires-python = ">=3.7.0"
readme = "README.md"
maintainers = [{ name = "Support", email = "[email protected]" }]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[tool.setuptools.packages.find]
include = ["arista*", "cloudvision*", "fmp*"]
namespaces = false
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
optional-dependencies = { dev = { file = ["requirements-dev.txt"] } }
[project.urls]
Documentation = "https://aristanetworks.github.io/cloudvision-python/"
Source = "https://github.com/aristanetworks/cloudvision-python"
[tool.isort]
profile = "black"