-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
50 lines (45 loc) · 1.43 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
from setuptools import setup
# requirements
install_requires = [
"authlib", # FIXME: drop after next release of confluent-kafka with OIDC support
"confluent-kafka >= 1.6.1, != 2.1.0, != 2.1.1",
"dataclasses ; python_version < '3.7'",
"importlib-metadata ; python_version < '3.8'",
"requests", # FIXME: drop after next release of confluent-kafka with OIDC support
"tqdm",
"certifi>=2020.04.05.1",
"typing-extensions ; python_version < '3.8'",
]
dev_requires = [
"autopep8",
"docker",
"flake8",
"isort",
"pytest",
"pytest-timeout",
"pytest-integration",
"sphinx",
"sphinx_rtd_theme",
"twine",
]
setup(name='adc-streaming',
description='Astronomy Data Commons streaming client libraries',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url='https://github.com/astronomy-commons/adc-streaming',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Development Status :: 3 - Alpha",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X"
],
author='Astronomy Data Commons Team',
author_email='[email protected]',
license='BSD',
packages=['adc'],
install_requires=install_requires,
extras_require={
"dev": dev_requires,
},
zip_safe=False)