-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
57 lines (51 loc) · 1.57 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
import imp
from setuptools import setup
imp.load_source('bamboo_version', 'bamboo/lib/version.py')
from bamboo_version import VERSION_NUMBER
setup(
name='bamboo-server',
version=VERSION_NUMBER,
author='Modi Research Group',
author_email='[email protected]',
license='BSD 3-clause',
packages=['bamboo',
'bamboo.config',
'bamboo.controllers',
'bamboo.core',
'bamboo.lib',
'bamboo.models',
'bamboo.tests.core',
'bamboo.tests.controllers',
'bamboo.tests.lib',
'bamboo.tests.models'],
package_data={'bamboo.tests': ['tests/fixtures/*.csv',
'tests/fixtures/*.json']},
scripts=['scripts/bamboo.sh',
'scripts/bamboo_uwsgi.sh',
'scripts/commands.sh',
'scripts/install.sh',
'scripts/run_server.py',
'scripts/test.sh',
'scripts/timeit.sh',
'celeryd/celeryd',
'celeryd/celeryd-centos'],
url='http://bamboo.io',
description='Dynamic data analysis over the web. The logic to your data '
'dashboards.',
long_description=open('README.rst', 'rt').read(),
install_requires=[
# celery requires python-dateutil>=1.5,<2.0
'python-dateutil==1.5',
# for pandas
'numpy',
'pandas',
'scipy',
# for celery
'kombu',
'celery',
'pymongo',
'cherrypy',
'pyparsing',
'simplejson',
'Routes'],
)