-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (27 loc) · 951 Bytes
/
pyproject.toml
File metadata and controls
34 lines (27 loc) · 951 Bytes
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
[build-system]
requires = ["setuptools", "packaging"]
build-backend = "setuptools.build_meta"
[project]
name = "nso-oc"
description = "Cisco NSO OpenConfig Tools"
readme = "./package_nso_to_oc/README.md"
license = {file = "LICENSE"}
dependencies = ["urllib3"]
classifiers = [
"License :: Other/Proprietary License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
]
[project.scripts]
"nso-oc" = "package_nso_to_oc.main:main"
[project.urls]
"homepage" = "https://github.com/model-driven-devops/nso-oc-services"
[tool.setuptools.packages.find]
where = ["."]
include = ["package_nso_to_oc", "package_nso_to_oc.*"]
[tool.setuptools.package-dir]
package_nso_to_oc = "package_nso_to_oc"
# TODO: setuptools claims the [tool.distutils] table is experimental and likely to change
# Place the <package>.egg-info directory at the root of the bundle to match prior behavior
[tool.distutils.egg_info]
egg_base = "."