forked from seanharr11/etlalchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
20 lines (20 loc) · 739 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
setup(
name = 'etlalchemy',
packages = ['etlalchemy'],
version = '1.0.6',
description = 'Extract, Transform, Load. Migrate any SQL Database in 4 lines of code',
author = 'Sean Harrington',
author_email='[email protected]',
url='https://github.com/seanharr11/etlalchemy',
download_url='https://github.com/seanharr11/etlalchemy/tarball/1.0.6',
keywords=['sql','migration','etl','database'],
install_requires = [
"py == 1.4.31",
"six == 1.9.0",
"SQLAlchemy == 1.0.13",
"sqlalchemy-migrate == 0.9.7",
"SQLAlchemy-Utils == 0.30.9"
],
classifiers=[],
)