-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (33 loc) · 1.04 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
from setuptools import setup
with open('README.md', 'r') as fp:
long_description = fp.read()
setup(
name = 'control-toolbox',
packages = ['control'],
version = '0.1.0',
license='MIT',
description = 'Python Control System Toolbox',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'Rushad Mehta',
author_email = '[email protected]',
url = 'https://control-toolbox.readthedocs.io/',
download_url = 'https://github.com/rushad7/control-toolbox/archive/v0.1.0.tar.gz',
keywords = ['Control Systems', 'Python Control Toolbox', 'System Simulation'],
install_requires=[
'numpy',
'scipy',
'sympy',
'matplotlib',
'pandas',
'tensorflow==1.14.0'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)