-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (27 loc) · 939 Bytes
/
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
import sys
from setuptools import setup, find_packages
setup(
name = "cubes-ga",
version = '0.1',
packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Scientific/Engineering',
'Topic :: Utilities'
],
entry_points={
},
test_suite = "tests",
author = "Stefan Urbanek",
author_email = "stefan.urbanek@gmail.com",
description = "Google Analytics backend for the Cubes Python OLAP library",
license = "MIT",
keywords = "olap multidimensional data analysis",
url = "http://cubes.databrewery.org"
)