-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
51 lines (48 loc) · 1.55 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
from setuptools import setup, find_packages
exec(open('babbage/version.py', 'r').read())
with open('README.md') as f:
long_description = f.read()
setup(
name='babbage',
version=__version__,
description="A light-weight analytical engine for OLAP processing",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
keywords='sql sqlalchemy olap cubes analytics',
author='Friedrich Lindenberg',
author_email='[email protected]',
url='http://github.com/openspending/babbage',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=[],
include_package_data=True,
package_data={
'': ['babbage/schema/model.json', 'babbage/schema/parser.ebnf']
},
zip_safe=False,
install_requires=[
'normality >= 0.2.2',
'PyYAML >= 3.10',
'six >= 1.7.3',
'flask >= 0.10.1',
'jsonschema >= 2.5.1',
'sqlalchemy >= 1.0',
'psycopg2 >= 2.6',
'grako == 3.10.1' # Versions > 3.10.1 break our tests
],
tests_require=[
'tox'
],
test_suite='tests',
entry_points={}
)