forked from aolarchive/Hydro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 955 Bytes
/
setup.py
File metadata and controls
34 lines (29 loc) · 955 Bytes
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
__author__ = 'moshebasanchig'
from setuptools import setup, find_packages
from pip.req import parse_requirements
import pip
VERSION = '0.1.7'
requirements = [str(ir.req) for ir in parse_requirements('requirements.txt', session=pip.download.PipSession())]
setup(
name='Hydro',
version=VERSION,
packages=find_packages(where='src', exclude=('sample', 'test')),
description='On-the-fly data manipulation framework',
author='Convertro',
author_email='moshe.basanchig@convertro.com',
url='https://github.com/Convertro/Hydro',
download_url='https://github.com/Convertro/Hydro/tarball/0.1',
package_dir={'': 'src'},
install_requires=requirements,
test_suite="nose.collector",
tests_require="nose",
entry_points={
'console_scripts': [
'hydro_cli = hydro.hydro_cli:main'
]
},
package_data={
'': ['hydro/template/*.template']
},
include_package_data=True
)