-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
40 lines (31 loc) · 1.01 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
from setuptools import setup, find_packages
requirements = ["pytz"]
setup(
name = "cubes-mongo",
version = '0.1',
install_requires = requirements,
packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_data = {
},
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",
# metadata for upload to PyPI
author = "Robin Thomas",
author_email = "[email protected]",
description = "MongoDB Backend for Cubes Python OLAP",
license = "MIT",
keywords = "olap multidimensional data analysis",
url = "http://cubes.databrewery.org"
)