-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (51 loc) · 1.76 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
# coding: utf-8
import re
from parver import Version, ParseError
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
version_scope = {'__builtins__': None}
with open("seeq/addons/mps/_version.py", "r+") as f:
version_file = f.read()
version_line = re.search(r"__version__ = (.*)", version_file)
if version_line is None:
raise ValueError(f"Invalid version. Expected __version__ = 'xx.xx.xx', but got \n{version_file}")
version = version_line.group(1).replace(" ", "").strip('\n').strip("'").strip('"')
print(f"version: {version}")
try:
Version.parse(version)
exec(version_line.group(0), version_scope)
except ParseError as e:
print(str(e))
raise
setup_args = dict(
name='seeq-mps',
version=version_scope['__version__'],
author="Seeq Corporation",
author_email="[email protected]",
license='Apache License 2.0',
platforms=["Linux", "Windows"],
description="Finds and measures similar events defined across multiple variables",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/seeq12/seeq-mps",
packages=setuptools.find_namespace_packages(include=['seeq.*']),
include_package_data=True,
zip_safe=False,
install_requires=[
'dtaidistance>=1.2.3',
'IPython>=7.21.0',
'ipywidgets>=7.6.3',
'mass_ts>=0.1.4',
'numpy>=1.22.2',
'pandas>=1.4.1', 'pandas<2.0.0',
'scipy>=1.5.4',
],
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
)
setuptools.setup(**setup_args)