-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.cfg
More file actions
83 lines (74 loc) · 2.04 KB
/
setup.cfg
File metadata and controls
83 lines (74 loc) · 2.04 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[metadata]
name = pythonrepo
version = 1.1.5
author = Mr. Walls
author_email = reactive-firewall@users.noreply.github.com
description = python-repo template
long_description = file:README.md
long_description_content_type = text/markdown
url = https://github.com/reactive-firewall/python-repo
download_url = https://github.com/reactive-firewall/python-repo.git
classifiers =
Development Status :: 4 - Beta
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: Linux
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Networking
license = MIT
license_files =
LICENSE.md
platform = any
project_urls =
"Bug Tracker" = https://github.com/reactive-firewall/python-repo/issues
License = https://github.com/reactive-firewall/python-repo/LICENSE.md
Documentation = https://reactive-firewallpython-repo.readthedocs.io/en/stable
Repository = https://github.com/reactive-firewall/python-repo.git
[bdist_rpm]
url = https://github.com/reactive-firewall/python-repo.git
[bdist_wheel]
universal=0
[options]
zip_safe = false
py_modules = pythonrepo
test_suite = tests
python_requires = >=3.9.20
setup_requires =
setuptools>=75.0.0
wheel>=0.44.0
build>=1.2.1
packages = find:
[options.packages.find]
where =
pythonrepo/
tests/
*.py
include =
pythonrepo.py
exclude =
docs
tests
[options.extras_require]
testing =
# upstream
pytest >= 7.4
pytest-checkdocs >= 2.4
pytest-flake8 >= 1.0.7
coverage >= 7
pytest-enabler >= 1.0.1
# local
flake8 >= 5.0
virtualenv >= 20.26.6
wheel >= 0.44.0
pip >= 24.3.1
pytest-cov >= 4.0.0; \
# coverage seems to make PyPy extremely slow
python_implementation != "PyPy"
[tool:pytest]
addopts = --doctest-glob=**/*.py --doctest-modules --cov= --cov-append --cov-report=xml