-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 1.07 KB
/
setup.py
File metadata and controls
34 lines (30 loc) · 1.07 KB
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
from setuptools import setup, find_packages
import codecs
import os
VERSION = '1.2.3'
DESCRIPTION = 'Chen-Fliess series computation'
with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# Setting up
setup(
name="CFSpy",
version=VERSION,
author="Ivan Perez Avellaneda",
author_email="<iperezave@gmail.com>",
license="MIT",
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/iperezav/CFSpy/',
packages=find_packages(),
install_requires=['numpy', 'sympy'],
keywords=['Chen-Fliess series', 'nonlinear system', 'input-output system', 'ODEs', 'control system', 'system theory', 'python'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)