forked from dstein64/kmeans1d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·69 lines (60 loc) · 2.61 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
import os
import setuptools
from setuptools import Extension, setup
from setuptools.command.build_ext import build_ext
class BuildExt(build_ext):
"""A custom build extension for adding -stdlib arguments for clang++."""
def build_extensions(self):
# '-std=c++11' is added to `extra_compile_args` so the code can compile
# with clang++. This works across compilers (ignored by MSVC).
for extension in self.extensions:
extension.extra_compile_args.append("-std=c++11")
try:
build_ext.build_extensions(self)
except setuptools.distutils.errors.CompileError:
# Workaround Issue #2.
# '-stdlib=libc++' is added to `extra_compile_args` and `extra_link_args`
# so the code can compile on macOS with Anaconda.
for extension in self.extensions:
extension.extra_compile_args.append("-stdlib=libc++")
extension.extra_link_args.append("-stdlib=libc++")
build_ext.build_extensions(self)
extension = Extension("optimal1dclustering._core", ["optimal1dclustering/_core.cpp"])
version_txt = os.path.join(os.path.dirname(__file__), "optimal1dclustering", "version.txt")
with open(version_txt, "r") as f:
version = f.read().strip()
with open("README.md") as f:
long_description = f.read()
setup(
author="Jan Meißner, Daniel Steinberg",
author_email="philipp.meissner@rwth-aachen.de, ds@dannyadam.com",
maintainer="Jan Meißner",
maintainer_email="philipp.meissner@rwth-aachen.de",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
],
cmdclass={"build_ext": BuildExt},
description="A Python package for Optimal 1D Clustering",
ext_modules=[extension],
keywords=["k-means", "k-median", "machine learning", "optimization"],
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
name="optimal1dclustering",
package_data={"optimal1dclustering": ["version.txt"]},
packages=["optimal1dclustering"],
python_requires=">=3.6",
url="",
version=version,
)