forked from shopkeep/aws_etl_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 779 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
27
28
29
30
31
32
from setuptools import setup, find_packages
running_requirements =[
'boto3==1.4.4',
'botocore==1.3.29',
'Cython==0.24.1',
'httpretty==0.8.10',
'pandas>=0.14.0',
'psycopg2==2.6',
'requests==2.7.0',
'SQLAlchemy==1.0.5'
]
setup(
name='aws_etl_tools',
description='some helpers for getting your data into redshift',
url='https://github.com/shopkeep/aws_etl_tools',
author_email='data@shopkeep.com',
version='0.0.1',
install_requires=running_requirements,
tests_require=running_requirements + [
'boto==2.45.0',
'freezegun==0.3.5',
'moto==0.4.23',
'nose==1.3.7',
'rednose==0.4.3'
],
packages=find_packages(),
include_package_data=True,
test_suite='nose.collector'
)