-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 725 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 725 Bytes
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
from setuptools import setup
with open('README.md', 'r') as readme:
long_description = readme.read()
setup(
name='gently',
version='0.18',
description='A tool for designing and analysing control systems',
long_description=long_description,
long_description_content_type='text/markdown',
author='Celaleddin Hidayetoğlu',
author_email='celaleddin.hidayetoglu@gmail.com',
url='https://github.com/celaleddin/gently/',
license='MIT',
packages=['gently'],
package_data={
'gently': ['*.hy'],
},
install_requires=['hy', 'sympy', 'control', 'matplotlib'],
entry_points={
'console_scripts': [
'gently = gently:gently_shell',
],
}
)