-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
38 lines (32 loc) · 1.21 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
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
REQUIREMENTS = ["lupa", "quik", "requests"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Programming Language :: Python',
"Programming Language :: Python :: 2.7",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
'Topic :: Software Development :: Libraries :: Python Modules']
long_description = "Language to preprocess Olap Cubes for Open Mining"
setup(name='oml',
version="0.1.3",
description="Open Mining Language",
long_description=long_description,
classifiers=classifiers,
keywords='langague dml oml openmining mining',
author="Avelino",
author_email="thiago@avelino.xxx",
url='http://openmining.io',
download_url="https://github.com/mining/oml/tarball/master",
license="MIT",
packages=find_packages(),
package_dir={'oml': 'oml'},
install_requires=REQUIREMENTS,
include_package_data=True,
zip_safe=False)