-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.py
51 lines (44 loc) · 1.4 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
from __future__ import division, print_function
from setuptools import setup, find_packages
VERSION = '0.18.1'
REQUIRED_PACKAGES = [
'apache-beam>=2.8.0,<3.0.0',
'SQLAlchemy>=1.4.0,<2.0.0',
'sqlalchemy-utils>=0.37.0,<1.0.0',
# Below are drivers for connection to specific DBs
'pg8000>=1.16.6,<2.0.0',
'PyMySQL>=0.9.3,<2.0.0',
'kafka-python>=2.0.1',
]
REQUIRED_PACKAGES_TEST = [
'nose>=1.3.7,<2.0.0',
'testing.postgresql>=1.3.0,<2.0.0',
'testing.mysqld>=1.4.0,<2.0.0',
'numpy>=1.15.4,<2.0.0',
'pandas'
]
REQUIRED_PACKAGES_DOCS = [
'Sphinx>=1.8.3,<2.0.0',
'sphinx_rtd_theme>=0.4.2,<2.0.0'
]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='beam-nuggets',
version=VERSION,
author='Mohamed Haseeb',
author_email='m@mohaseeb.com',
description='Collection of transforms for the Apache beam python SDK.',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mohaseeb/beam-nuggets",
install_requires=REQUIRED_PACKAGES,
extras_require={'dev': REQUIRED_PACKAGES_TEST + REQUIRED_PACKAGES_DOCS},
packages=find_packages(exclude=("test", "tests")),
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)