-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
66 lines (59 loc) · 2.07 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
# -*- coding: utf-8 -*-
import re
import setuptools
from parver import Version, ParseError
# Build a wheel file containing the source code using the following command in a terminal:
# >>> python setup.py bdist_wheel
namespace = 'seeq.*'
with open("README.md", "r") as fh:
long_description = fh.read()
version_scope = {'__builtins__': None}
with open('seeq/addons/plot_curve/_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-plot-curve',
version=version_scope['__version__'],
description='A Seeq add-on tool for fitting curves to tabular data and pushing resulting formulas to Seeq.',
author='Seeq Corporation',
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/seeq12/seeq-plot-curve",
packages=setuptools.find_namespace_packages(include=[namespace]),
include_package_data=True,
zip_safe=False,
install_requires=[
"ipywidgets>=7.6.3",
"ipyvuetify>=1.8.0",
"rx>=3.2.0",
"mpmath>=1.1.0",
"sympy>=1.9",
"traitlets>=5.1.0",
"numpy>=1.19.5",
"pandas>=1.2.3 , != 1.3.0",
"IPython>=7.29.0",
"typeguard>=2.13.0",
"mixpanel>=4.9.0",
"pint>=0.17.0",
"matplotlib>=3.5.1",
],
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
license='Apache License 2.0'
)
setuptools.setup(**setup_args)