-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (34 loc) · 1.01 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
[tool.pdm]
[tool.pdm.dev-dependencies]
lint = [
"black>=22.12.0",
"pre-commit>=2.21.0",
]
[project]
name = "dtnclient"
version = "0.1"
description = "Python client for dtn7-go"
authors = [
{name = "Markus Sommer", email = "[email protected]"},
]
dependencies = ["python-rapidjson", "requests"]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "GPLv3+"}
keywords = ["dtn bundle"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) ",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Homepage = "https://github.com/CryptoCopter/dtnclient"
"Bug Reports" = "https://github.com/CryptoCopter/dtnclient/issues"
Source = "https://github.com/CryptoCopter/dtnclient"
[project.scripts]
dtnclient = "dtnclient.dtnclient:main"
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"