-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
66 lines (60 loc) · 1.51 KB
/
setup.cfg
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
[metadata]
name = cobbler_tftp
author = Team Cobbler
author_email = [email protected]
url = https://github.com/cobbler/cobbler-tftp
description = The tftp server daemon for Cobbler
long_description = file: README.md
long_description_content_type = text/markdown
keywords = cobbler, tftp
license = GPL v2.0 License
classifiers =
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.6
[options]
zip_safe = True
package_dir=
=src
packages = find:
include_package_data = True
setup_requires =
setuptools
setuptools-scm>=6.4.2; python_version>"3.6"
setuptools-scm==6.4.2; python_version=="3.6"
wheel
install_requires =
fbtftp>=0.5
python-daemon>=3.0.1; python_version>"3.6"
python-daemon==2.3.2; python_version=="3.6"
pyyaml>=6.0
click>=8.0.4; python_version>"3.6"
click==8.0.4; python_version=="3.6"
importlib-metadata==3.10.1; python_version=="3.6"
importlib-resources==5.4.0; python_version=="3.6"
schema>=0.6.7; python_version>"3.6"
schema==0.6.7; python_version=="3.6"
[options.extras_require]
tests_require =
pytest>=7.0.1
pytest-mock>=3.6.1
pytest-cov>=4.1.0; python_version>"3.6"
pytest-cov==3.0.0; python_version=="3.6"
lint_requires =
importlib-metadata>=3.10.1
importlib-resources==5.4.0
pre-commit>=2.0.1
black>=22.1.0
pyright>=0.0.13
isort>=5.8.0
prospector>=1.7.7
doc =
Sphinx>=5.3.0
sphinx-rtd-theme>=1.2.0
towncrier>=22.12.0
dev_requires =
pip>=21.3.1
[options.packages.find]
where=src
exclude =
tests*