-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
66 lines (57 loc) · 2.08 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["poetry-core>=1.6.0","poetry-dynamic-versioning>=0.22.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
bump = true
[tool.poetry-dynamic-versioning.substitution]
files = ["src/ndn/__init__.py"]
[tool.poetry]
name = "python-ndn"
version = "0.0.0"
description = "An NDN client library with AsyncIO support in Python 3"
authors = ["Xinyu Ma <[email protected]>"]
license = "Apache-2.0"
readme = ["README.rst", "CHANGELOG.rst"]
homepage = "https://python-ndn.readthedocs.io"
repository = "https://github.com/named-data/python-ndn"
documentation = "https://python-ndn.readthedocs.io"
keywords = ["NDN"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Internet",
"Topic :: System :: Networking",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
packages = [{ include = "ndn", from = "src" }]
include = [{ path = "tests", format = "sdist" }]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/named-data/python-ndn/issues"
"Changelog" = "https://python-ndn.readthedocs.io/en/latest/src/changelog.html"
[tool.poetry.dependencies]
python = "^3.10"
pycryptodomex = "^3.21.0"
pygtrie = "^2.5.0"
aenum = "^3.1.15"
lark = "^1.2.2"
aiohttp = "^3.10.9"
# Extra dependencies [dev]
pytest = { version = "^7.1.2", optional = true }
pytest-cov = { version = "^4.1.0", optional = true }
flake8 = { version = "^6.1.0", optional = true }
# Extra dependencies [docs]
Sphinx = { version = "^7.1.2", optional = true }
sphinx-rtd-theme = { version = "^1.3.0rc1", optional = true }
sphinx-autodoc-typehints = { version = "^1.24.0", optional = true }
[tool.poetry.extras]
dev = ["pytest", "pytest-cov", "flake8"]
docs = ["Sphinx", "sphinx-rtd-theme", "sphinx-autodoc-typehints"]
[tool.poetry.scripts]
pyndnsec = "ndn.bin.sec:main"
pyndntools = "ndn.bin.tools:main"
pynfdc = "ndn.bin.nfdc:main"