-
Notifications
You must be signed in to change notification settings - Fork 191
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 699 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import find_packages
from setuptools import setup
install_requires = ['numpy', 'matplotlib', 'cvxopt', 'scipy']
tests_require = ['pytest']
setup_requires = ["pytest-runner"]
setup(
name='PythonLinearNonlinearControl',
version='2.0',
description='Implementing linear and nonlinear control method in python',
author='Shunichi Sekiguchi',
author_email='quick1st97of@gmail.com',
install_requires=install_requires,
url='https://github.com/Shunichi09/PythonLinearNonlinearControl',
license='MIT License',
packages=find_packages(exclude=('tests', 'scripts')),
setup_requires=setup_requires,
test_suite='tests',
tests_require=tests_require
)