forked from DataBrewery/cubes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (38 loc) · 1.73 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 = ["pytz", "python-dateutil", "jsonschema"]
setup(
name = "cubes",
version = '1.0alpha',
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires = requirements,
packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst'],
'cubes': [ 'templates/*.html', 'templates/*.js', 'schemas/*.json' ],
'cubes.server': ['templates/*.html'],
'cubes.backends.mixpanel': ['*.json']
},
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 = "tests",
# metadata for upload to PyPI
author = "Stefan Urbanek",
author_email = "stefan.urbanek@gmail.com",
description = "Lightweight framework for Online Analytical Processing (OLAP) and multidimensional analysis",
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.
)