-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
65 lines (57 loc) · 2.05 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
[tool.poetry]
name = "ndn-python-repo"
version = "0.4"
description = "An NDN Repo implementation using Python"
authors = ["Zhaoning Kong <[email protected]>"]
maintainers = [
"Xinyu Ma <[email protected]>",
"Tianyuan Yu <[email protected]>",
]
license = "Apache-2.0"
readme = "README.rst"
homepage = "https://ndn-python-repo.readthedocs.io"
repository = "https://github.com/UCLA-IRL/ndn-python-repo"
documentation = "https://ndn-python-repo.readthedocs.io"
keywords = ["NDN"]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Database",
"Topic :: Internet",
"Topic :: System :: Networking",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
packages = [{include = "ndn_python_repo"}]
include = [
{ path = "tests", format = "sdist" },
{ path = "ndn_python_repo/ndn-python-repo.service", format = ["sdist", "wheel"] },
{ path = "ndn_python_repo/ndn-python-repo.conf.sample", format = ["sdist", "wheel"] },
]
[tool.poetry.dependencies]
python = "^3.10"
python-ndn = "^0.4.2"
pyyaml = "^6.0"
setuptools = "^75.0.0"
# Extra dependencies [dev]
pytest = { version = "^8.0.0", optional = true }
pytest-cov = { version = "^5.0.0", optional = true }
plyvel = { version = "^1.5.0", optional = true }
pymongo = { version = "^4.4.1", optional = true }
# Extra dependencies [docs]
Sphinx = { version = "^8.0.0", optional = true }
sphinx-rtd-theme = { version = "^3.0.0", optional = true }
sphinx-autodoc-typehints = { version = "^2.5.0", optional = true }
[tool.poetry.extras]
docs = ["Sphinx", "sphinx-rtd-theme", "sphinx-autodoc-typehints"]
dev = ["pytest", "pytest-cov", "pymongo"]
leveldb = ["plyvel"]
mongodb = ["pymongo"]
[tool.poetry.scripts]
ndn-python-repo = "ndn_python_repo.cmd.main:main"
ndn-python-repo-install = "ndn_python_repo.cmd.install:main"
ndn-python-repo-port = "ndn_python_repo.cmd.port:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"