forked from matrix-profile-foundation/matrixprofile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
84 lines (73 loc) · 2.72 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
import setuptools
from setuptools import dist
dist.Distribution().fetch_build_eggs(['cython>=0.x', 'numpy>=1.16.2', 'wheel'])
from distutils.extension import Extension
from Cython.Build import cythonize
import numpy
import os, sys
from glob import glob
import version
SOURCE_URL = 'https://github.com/matrix-profile-foundation/matrixprofile'
# manual list of files to be compiled
extensions = []
extensions.append(Extension(
'matrixprofile.algorithms.cympx',
['matrixprofile/algorithms/cympx.pyx'],
extra_compile_args = ["-O2", "-fopenmp" ],
extra_link_args = ['-fopenmp'],
include_dirs=[numpy.get_include()],
))
extensions.append(Extension(
'matrixprofile.cycore',
['matrixprofile/cycore.pyx'],
extra_compile_args = ["-O2",],
include_dirs=[numpy.get_include()],
))
matplot = 'matplotlib>=3.0.3'
scipy = 'scipy>=1.3.2,<2.0.0'
if sys.version_info.major == 3:
with open('README.rst', 'r', encoding='utf-8') as fh:
long_description = fh.read()
elif sys.version_info.major == 2:
matplot = 'matplotlib'
scipy = 'scipy<2.0.0'
with open('README.rst', 'r') as fh:
long_description = fh.read()
# copy version file over
src_path = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(src_path, 'version.py')) as fh:
with open(os.path.join(src_path, 'matrixprofile', 'version.py'), 'w') as out:
out.write(fh.read())
setuptools.setup(
name="matrixprofile",
version=version.__version__,
author="Matrix Profile Foundation",
author_email="[email protected]",
description="An open source time series data mining library based on Matrix Profile algorithms.",
long_description=long_description,
long_description_content_type="text/x-rst",
url=SOURCE_URL,
project_urls={
'Matrix Profile Foundation': 'https://matrixprofile.org',
'Source Code': SOURCE_URL,
},
packages = setuptools.find_packages(),
setup_requires=['cython>=0.x', 'wheel'],
install_requires=['numpy>=1.16.2', matplot, 'protobuf==3.11.2', scipy],
ext_modules=cythonize(extensions),
include_dirs=[numpy.get_include()],
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
],
keywords="matrix profile time series discord motif analysis data science anomaly pattern",
)