-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
86 lines (73 loc) · 3.18 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
from setuptools import find_packages, Extension, dist
try:
from setuptools import setup
except:
from distutils.core import setup
import os
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
dist.Distribution().fetch_build_eggs(["cython>=0.27", "numpy>=1.13"])
try:
from numpy import get_include
except:
def get_include():
# Defer import to later
from numpy import get_include
return get_include()
try:
from Cython.Build import cythonize
except ImportError:
print("! Could not import Cython !")
cythonize = None
# https://cython.readthedocs.io/en/latest/src/userguide/source_files_and_compilation.html#distributing-cython-modules
def no_cythonize(extensions, **_ignore):
for extension in extensions:
sources = []
for sfile in extension.sources:
path, ext = os.path.splitext(sfile)
if ext in (".pyx", ".py"):
if extension.language == "c++":
ext = ".cpp"
else:
ext = ".c"
sfile = path + ext
sources.append(sfile)
extension.sources[:] = sources
return extensions
path = os.path.dirname(os.path.abspath(__file__))
extensions = [
Extension("size_constrained_clustering.k_means_constrained.mincostflow_vectorized_", [os.path.join(path, "size_constrained_clustering/k_means_constrained/mincostflow_vectorized_.pyx")],
include_dirs=[get_include()]),
Extension("size_constrained_clustering.sklearn_import.cluster._k_means", [os.path.join(path, "size_constrained_clustering/sklearn_import/cluster/_k_means.pyx")],
include_dirs=[get_include()]),
Extension("size_constrained_clustering.sklearn_import.metrics.pairwise_fast", [os.path.join(path, "size_constrained_clustering/sklearn_import/metrics/pairwise_fast.pyx")],
include_dirs=[get_include()]),
Extension("size_constrained_clustering.sklearn_import.utils.sparsefuncs_fast", [os.path.join(path, "size_constrained_clustering/sklearn_import/utils/sparsefuncs_fast.pyx")],
include_dirs=[get_include()]),
]
CYTHONIZE = bool(int(os.getenv("CYTHONIZE", 1))) and cythonize is not None
if CYTHONIZE:
compiler_directives = {"language_level": 3, "embedsignature": True}
extensions = cythonize(extensions, compiler_directives=compiler_directives)
else:
extensions = no_cythonize(extensions)
with open(os.path.join(path, "requirements.txt")) as fp:
install_requires = fp.read().strip().split("\n")
VERSION = "0.1.1"
LICENSE = 'MIT'
setup(
ext_modules=extensions,
version=VERSION,
setup_requires=["cython", "numpy"],
install_requires=install_requires,
name='size_constrained_clustering',
description='Size Constrained Clustering solver',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/jingw2/size_constrained_clustering',
author='Jing Wang',
author_email='[email protected]',
license=LICENSE,
packages=find_packages(),
python_requires='>=3.6')