forked from tspurway/hustle
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (26 loc) · 768 Bytes
/
setup.py
File metadata and controls
32 lines (26 loc) · 768 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
import sys
from setuptools import setup, find_packages
if sys.version_info[:2] < (2, 6):
raise RuntimeError('Requires Python 2.6 or better')
VERSION = '0.2.7'
install_requires = [
'pyyaml',
'ujson',
]
tests_require = install_requires + ['nose']
setup(
name='hustle',
version=VERSION,
description=('Hustle: a data warehouse system.'),
keywords='hustle',
author='Chango Inc.',
url='http://chango.com',
license='MIT License',
packages=find_packages(exclude=['test', 'deps', 'examples', 'inferno']),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
test_suite='nose.collector',
requires=['disco', 'mdb'])