-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.69 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
from setuptools import setup, find_packages
import os
VERSION = '0.1.6'
DESCRIPTION = 'DQode is a Python Library to compute the optimal inner-quadratic quadratization and dissipative quadratization of a given polynomial ODE system.'
setup(
name="DQbee",
version=VERSION,
author="Yubo Cai, Gleb Pogudin",
author_email="[email protected], [email protected]",
maintainer="Yubo Cai",
maintainer_email="[email protected]",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=open('README.md','r',encoding="UTF8").read(),
packages=find_packages(),
install_requires=['sympy',
'numpy',
'scipy',
'matplotlib',
'tbcontrol'],
keywords=['quadratization', 'differential equation', 'symbolic computing'],
url="https://github.com/yubocai-poly/Dissipative-Quadratiation-Package",
project_urls={
"Code": "https://github.com/yubocai-poly/Dissipative-Quadratiation-Package/",
"Issue tracker": "https://github.com/yubocai-poly/Dissipative-Quadratiation-Package/issues",
},
license="MIT",
classifiers= [
"Operating System :: OS Independent",
"Topic :: Text Processing :: Indexing",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.8",
)