forked from DataBrewery/cubes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (38 loc) · 1.62 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
import sys
from setuptools import setup, find_packages
requirements = []
if sys.version_info < (2,7):
requirements += ['ordereddict']
setup(
name = "cubes",
version = '0.8.1',
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires = requirements,
packages=find_packages(exclude=['ez_setup']),
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst'],
'cubes.server': ['templates/*.html']
},
scripts = ['bin/slicer'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Scientific/Engineering',
'Topic :: Utilities'
],
test_suite = "cubes.tests.suite",
# metadata for upload to PyPI
author = "Stefan Urbanek",
author_email = "[email protected]",
description = "Framework for Online Analytical Processing (OLAP), multidimensional analysis and cube precomputation",
license = "MIT license with following addition: If your version of the Software supports interaction with it remotely through a computer network, the above copyright notice and this permission notice shall be accessible to all users.",
keywords = "olap multidimensional data analysis",
url = "http://databrewery.org"
# could also include long_description, download_url, classifiers, etc.
)