forked from amundsen-io/amundsendatabuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (21 loc) · 801 Bytes
/
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
import os
from setuptools import setup, find_packages
__version__ = '1.4.3'
requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements.txt')
with open(requirements_path) as requirements_file:
requirements = requirements_file.readlines()
setup(
name='amundsen-databuilder',
version=__version__,
description='Amundsen Data builder',
url='https://www.github.com/lyft/amundsendatabuilder',
maintainer='Lyft',
maintainer_email='[email protected]',
packages=find_packages(exclude=['tests*']),
dependency_links=[],
install_requires=requirements,
extras_require={
':python_version=="2.7"': ['typing>=3.6'], # allow typehinting PY2
'kafka': ['confluent-kafka==1.0.0'], # To use with Kafka source extractor
},
)