-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
106 lines (98 loc) · 3.69 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
from pkg_resources import parse_version
from configparser import ConfigParser
import setuptools
assert parse_version(setuptools.__version__)>=parse_version('36.2') # nosec
# note: all settings are in settings.ini; edit there, not here
config = ConfigParser(delimiters=['='])
config.read('settings.ini')
cfg = config['DEFAULT']
cfg_keys = 'version description keywords author author_email'.split()
expected = cfg_keys + "lib_name user branch license status min_python audience language".split()
for o in expected: assert o in cfg, "missing expected setting: {}".format(o) # nosec
setup_cfg = {o:cfg[o] for o in cfg_keys}
licenses = {
'apache2': ('Apache Software License 2.0','OSI Approved :: Apache Software License'),
'mit': ('MIT License', 'OSI Approved :: MIT License'),
'gpl2': ('GNU General Public License v2', 'OSI Approved :: GNU General Public License v2 (GPLv2)'),
'gpl3': ('GNU General Public License v3', 'OSI Approved :: GNU General Public License v3 (GPLv3)'),
'bsd3': ('BSD License', 'OSI Approved :: BSD License'),
}
statuses = [ '1 - Planning', '2 - Pre-Alpha', '3 - Alpha',
'4 - Beta', '5 - Production/Stable', '6 - Mature', '7 - Inactive' ]
py_versions = '3.6 3.7 3.8 3.9 3.10 3.11'.split()
requirements = [
"pydantic>=2.0",
"anyio>=3.0",
"aiokafka>=0.8.0",
"asyncer>=0.0.2",
"tqdm>=4.62",
"docstring-parser>=0.15",
"typer>=0.7.0",
"nest-asyncio>=1.5.6",
"psutil>=5.9.5;platform_system=='Windows'",
]
avro_requirements = [
"fastavro>=1.7.3"
]
test_requirements = [
"install-jdk==0.3.0",
"ipywidgets>=8.0,<=8.0.4",
"requests>=2.20",
]
docs_requirements = [
"PyYAML>=5.3.1",
"aiohttp>=3.8.4"
]
min_python = cfg['min_python']
lic = licenses.get(cfg['license'].lower(), (cfg['license'], None))
dev_requirements = [
"nbconvert>=7.2.9",
"nbformat>=5.7.3",
"nbdev-mkdocs==0.6.0",
"mypy==1.3.0",
"pre-commit==3.3.1",
"nbqa==1.6.3",
"black==23.3.0",
"isort==5.12.0",
"bandit==1.7.5",
"semgrep==1.21.0",
"pytest==7.3.1",
"numpy>=1.21.0",
"pandas>=1.2.0",
"email-validator>=2.0.0",
"scikit-learn==1.2.1",
"ipython<8.13",
"fastapi>=0.100.0b2",
"uvicorn==0.22.0",
]
project_urls = {
'Bug Tracker': cfg['git_url'] + '/issues',
'CI': cfg['git_url'] + '/actions',
'Documentation': 'https://fastkafka.airt.ai/',
# 'Source Code': cfg['git_url'],
'Tutorial': 'https://colab.research.google.com/github/airtai/fastkafka/blob/main/nbs/guides/Guide_00_FastKafka_Demo.ipynb'
}
setuptools.setup(
name = cfg['lib_name'],
license = lic[0],
classifiers = [
'Development Status :: ' + statuses[int(cfg['status'])],
'Intended Audience :: ' + cfg['audience'].title(),
'Natural Language :: ' + cfg['language'].title(),
] + ['Programming Language :: Python :: '+o for o in py_versions[py_versions.index(min_python):]] + (['License :: ' + lic[1] ] if lic[1] else []),
url = cfg['git_url'],
project_urls=project_urls,
packages = setuptools.find_packages(),
include_package_data = True,
install_requires = requirements,
extras_require={ 'dev': dev_requirements + avro_requirements + test_requirements + docs_requirements, "avro": avro_requirements, "test": test_requirements, "docs": docs_requirements },
dependency_links = cfg.get('dep_links','').split(),
python_requires = '>=' + cfg['min_python'],
long_description = open('README.md', encoding="UTF-8").read(),
long_description_content_type = 'text/markdown',
zip_safe = False,
entry_points = {
'console_scripts': cfg.get('console_scripts','').split(),
'nbdev': [f'{cfg.get("lib_path")}={cfg.get("lib_path")}._modidx:d']
},
**setup_cfg) # type: ignore