forked from msoulier/tftpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (58 loc) · 2.1 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
[project]
name = "partftpy"
description = "tftpd module for copyparty"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=2.7"
dependencies = []
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
"Environment :: Console",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Internet",
]
[project.urls]
"Source Code" = "http://github.com/9001/partftpy"
"Bug Tracker" = "http://github.com/9001/partftpy/issues"
[project.scripts]
"partftpy_client" = "partftpy.bin.partftpy_client:main"
"partftpy_server" = "partftpy.bin.partftpy_server:main"
# =====================================================================
[tool.hatch.version]
source = "code"
path = "partftpy/__init__.py"
[tool.setuptools.dynamic]
version = { attr = "partftpy.__init__.__version__" }
# =====================================================================
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-v -rxX --tb=long --color=yes --junitxml=build/results.xml --cov-report=xml --cov"
testpaths = [
"t/",
"t/test.py",
]