-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (43 loc) · 1.24 KB
/
setup.py
File metadata and controls
48 lines (43 loc) · 1.24 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
from setuptools import setup
# requirements
install_requires = [
"confluent-kafka >= 2.11.0",
"dataclasses ; python_version < '3.7'",
"importlib-metadata ; python_version < '3.8'",
"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)