-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
37 lines (28 loc) · 1.01 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
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
setup(
name="pyctrl",
version="0.4.3",
packages=find_packages(),
python_requires='>=3.4',
scripts=['scripts/pyctrl_start_server',
'scripts/pyctrl_stop_server'],
# metadata
author = "Mauricio C. de Oliveira",
author_email = "[email protected]",
description = "Python Suite for Systems and Control",
long_description=readme(),
license = "Apache-2.0",
keywords = "feedback control systems beaglebone black Robotics Cape",
url = "https://github.com/mcdeoliveira/pyctrl",
download_url = "https://github.com/mcdeoliveira/pyctrl/archive/0.3.tar.gz",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Other Audience',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.4',
],
)