-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
58 lines (49 loc) · 1.72 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
import os
from setuptools import setup, find_packages
from typhoon import __version__
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme_file:
long_description = readme_file.read()
with open(os.path.join(os.path.dirname(__file__), 'requirements.txt')) as f:
required = f.read().splitlines()
# with open(os.path.join(os.path.dirname(__file__), 'test_requirements.txt')) as f:
# test_required = f.read().splitlines()
test_required = ['pytest', 'moto']
kafka = ['kafka-python']
all_requirements = kafka
dev_requirements = all_requirements + [
'termcolor', 'watchdog', 'tabulate', 'pygments', 'sqlitedict', 'datadiff', 'ipython', 'jedi==0.17.2', 'streamlit',
'fastapi', 'uvicorn', 'graphviz',
]
setup(
name='typhoon-orchestrator',
version=__version__,
packages=find_packages(),
install_requires=required,
extras_require={
'all': all_requirements,
'dev': dev_requirements,
'test': test_required,
},
tests_require=test_required,
test_suite='pytest',
setup_requires=['wheel'],
include_package_data=True,
license='Apache 2 License',
description='Create asynchronous data pipelines and deploy to cloud or airflow',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/typhoon-data-org/typhoon-orchestrator',
author='Typhoon Data',
author_email='info.typhoon.data@gmail.com',
entry_points={
'console_scripts': [
'typhoon=typhoon.cli:cli',
]
},
classifiers=[
'Environment :: Console',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
],
)