forked from mining/mining
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
71 lines (61 loc) · 2.31 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# -*- coding:utf-8 -*-
import os
import sys
import subprocess
from setuptools import setup, find_packages
from Cython.Build import cythonize
import mining
REQUIREMENTS = [i.strip() for i in open("requirements.txt").readlines()
if not i.startswith("http")]
dependency_links = [i.strip() for i in open("requirements.txt").readlines()
if i.startswith("http")]
DATA_DIR = os.path.abspath(os.path.dirname(__file__))
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
'Framework :: Bottle',
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: JavaScript",
"Programming Language :: Python :: 2.7",
'Programming Language :: Python',
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Information Analysis'
]
try:
long_description = open('README.md').read()
except:
long_description = mining.__description__
def generate_cython():
print("Cythonizing sources")
p = subprocess.call([sys.executable,
os.path.join(DATA_DIR, 'scripts', 'cythonize.py'),
'mining'],
cwd=DATA_DIR)
if p != 0:
raise RuntimeError("Running cythonize failed!")
generate_cython()
setup(name='mining',
version=mining.__version__,
description=mining.__description__,
long_description=long_description,
classifiers=classifiers,
keywords='open mining bi business intelligence platform riak',
author=mining.__author__,
author_email=mining.__email__,
url='https://github.com/mining/mining',
download_url="https://github.com/mining/mining/tarball/master",
license=mining.__license__,
packages=find_packages(exclude=('doc', 'docs',)),
install_requires=REQUIREMENTS,
dependency_links=dependency_links,
test_suite='nose.main',
include_package_data=True,
zip_safe=False,
ext_modules=cythonize(["mining/utils/*.pyx"]),)