-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (41 loc) · 1.33 KB
/
setup.py
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
#!/usr/bin/env python3
from setuptools import setup
ptr_params = {
"entry_point_module": "aioexabgp/announcer/__init__",
"test_suite": "aioexabgp.tests.base",
"test_suite_timeout": 300,
"required_coverage": {
"aioexabgp/announcer/__init__.py": 50,
"aioexabgp/announcer/fibs.py": 64,
"aioexabgp/announcer/healthcheck.py": 60,
"aioexabgp/exabgpparser.py": 90,
"aioexabgp/pipes.py": 70,
"aioexabgp/utils.py": 85,
},
"run_flake8": True,
"run_black": True,
"run_mypy": True,
"run_usort": True,
}
setup(
name="aioexabgp",
version="2022.3.9",
description="asyncio exabgp base API client",
packages=["aioexabgp", "aioexabgp.announcer", "aioexabgp.tests"],
url="http://github.com/cooperlees/aioexabgp/",
author="Cooper Lees",
author_email="[email protected]",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 3 - Alpha",
],
entry_points={
"console_scripts": ["aioexabgp-announcer = aioexabgp.announcer.main:main"]
},
python_requires=">=3.8",
test_suite=ptr_params["test_suite"],
)