|
1
|
|
|
from os import path |
|
2
|
|
|
|
|
3
|
|
|
from setuptools import setup, find_packages |
|
4
|
|
|
|
|
5
|
|
|
here = path.abspath(path.dirname(__file__)) |
|
6
|
|
|
|
|
7
|
|
|
with open(path.join(here, 'README.rst'), encoding='utf-8') as f: |
|
8
|
|
|
long_description = f.read() |
|
9
|
|
|
|
|
10
|
|
|
setup( |
|
11
|
|
|
name='ETLT', |
|
12
|
|
|
|
|
13
|
|
|
version='0.9.4', |
|
14
|
|
|
|
|
15
|
|
|
description='Extract Transform Load - but not in that strict order', |
|
16
|
|
|
long_description=long_description, |
|
17
|
|
|
|
|
18
|
|
|
url='https://github.com/SetBased/py-etlt', |
|
19
|
|
|
|
|
20
|
|
|
author='Paul Water', |
|
21
|
|
|
author_email='[email protected]', |
|
22
|
|
|
|
|
23
|
|
|
license='MIT', |
|
24
|
|
|
|
|
25
|
|
|
classifiers=[ |
|
26
|
|
|
'Development Status :: 3 - Alpha', |
|
27
|
|
|
|
|
28
|
|
|
'Environment :: Console', |
|
29
|
|
|
|
|
30
|
|
|
'Intended Audience :: Developers', |
|
31
|
|
|
|
|
32
|
|
|
'License :: OSI Approved :: MIT License', |
|
33
|
|
|
|
|
34
|
|
|
'Operating System :: OS Independent', |
|
35
|
|
|
|
|
36
|
|
|
'Programming Language :: Python :: 3', |
|
37
|
|
|
'Programming Language :: Python :: 3.4', |
|
38
|
|
|
'Programming Language :: Python :: 3.5', |
|
39
|
|
|
|
|
40
|
|
|
'Topic :: Database' |
|
41
|
|
|
], |
|
42
|
|
|
|
|
43
|
|
|
keywords='ETLT, ETL, ELT, Extract, Transform, Load, DWH, Data, Warehouse', |
|
44
|
|
|
|
|
45
|
|
|
packages=find_packages(exclude=['build', 'test']), |
|
46
|
|
|
|
|
47
|
|
|
install_requires=['chardet'] |
|
48
|
|
|
) |
|
49
|
|
|
|