-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
92 lines (83 loc) · 2.16 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[metadata]
name = multicast
version = 2.0.4
author = Mr. Walls
author_email = [email protected]
description = Multicast Python Module for Send/Recv Stubs.
long_description = file:README.md
long_description_content_type = text/markdown
url = https://github.com/reactive-firewall/multicast
download_url = https://github.com/reactive-firewall/multicast.git
classifiers =
Intended Audience :: Developers
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: Linux
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.10
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/multicast/issues
License = https://github.com/reactive-firewall/multicast/LICENSE.md
Documentation = https://reactive-firewallmulticast.readthedocs.io/en/stable
Repository = https://github.com/reactive-firewall/multicast.git
[bdist_rpm]
url = https://github.com/reactive-firewall/multicast.git
[bdist_wheel]
universal=0
[options]
zip_safe = false
py_modules = multicast
test_suite = tests
python_requires = >=3.9.20, !=3.14.*
setup_requires =
setuptools>=75.0.0
wheel>=0.44.0
build>=1.2.1
scripts =
multicast/__main__.py
packages = find:
[options.packages.find]
where =
multicast/
tests/
*.py
include =
exceptions
env
hear
recv
send
skt
__main__
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.5
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