This repository has been archived by the owner on Apr 29, 2024. It is now read-only.
forked from p5k6/dataduct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (57 loc) · 1.84 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
58
59
60
"""
Setup file for installation of the dataduct code
"""
from setuptools import find_packages
from setuptools import setup
filename = 'dataduct/__init__.py'
exec(compile(open(filename, "rb").read(), filename, 'exec'))
# Deprecated on Python 3.6
# execfile('dataduct/__init__.py')
version = __version__
setup(
name='dataduct',
version=version,
author='Coursera Inc.',
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
namespace_packages=['dataduct'],
include_package_data=True,
url='https://github.com/coursera/dataduct',
long_description=open('README.rst').read(),
author_email='[email protected]',
license='Apache License 2.0',
description='DataPipeline for Humans',
install_requires=[
'boto>=2.38',
'mysqlclient>=1.4.2',
# 'MySQL-python>=1.2.3',
'pandas>=0.14',
'psycopg2',
# 'pyparsing>=1.5.6',
'pyparsing',
'pytimeparse>=1.1.4',
# Force PyYAML version due awscli conflict
'PyYAML~=5.4',
'testfixtures>=4.1.2',
'pyprind',
'sqlparse>=0.2.0'
],
scripts=['bin/dataduct'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: MacOS :: MacOS 9',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Programming Language :: Unix Shell',
'Topic :: Database',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Utilities',
],
)