-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
58 lines (47 loc) · 1.75 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
52
53
54
55
56
57
from setuptools import setup, find_packages
import cubetl
setup(
name = 'cubetl',
#package = 'cubetl',
version = cubetl.APP_VERSION,
author = 'Jose Juan Montes',
author_email = '[email protected]',
packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
zip_safe=False,
include_package_data=True,
package_data = {
'cubetl': ['*.template']
},
#scripts = ['bin/cubetl'],
url='https://github.com/jjmontesl/cubetl',
license='LICENSE.txt',
description='Data manipulation (ETL) tool and library',
long_description="CubETL is a framework and related tools for data ETL (Extract, Transform and Load). It allows data processing flows to be defined on a configuration file. It can access and store files, databases, HTTP, FTP, SFTP resources and is extensible and scriptable.",
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
'Topic :: Text Processing :: Markup :: XML'
],
install_requires = [
"beautifulsoup4>=4.8.1",
"repoze.lru >= 0.5.0",
"sqlalchemy >= 1.3.11",
"fs >= 0.3.0",
"Jinja2 >= 2.10",
"Pygments >= 2.3.1",
"simplejson >= 3.17.0",
"dateutils >= 0.6.7",
"python-slugify >= 1.2.6",
"lxml >= 4.4.1",
"chardet >= 3.0.4",
"psutil>=5.4.8",
],
entry_points={'console_scripts': ['cubetl=cubetl.core.bootstrap:main']},
)