-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
30 lines (27 loc) · 1.3 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
from setuptools import setup
from soar import __version__
with open('README.rst', 'r') as f:
long_description = f.read()
setup(name='Soar',
version=__version__,
description='An extensible Python framework for simulating and interacting with robots',
long_description=long_description,
author='Andrew Antonitis',
author_email='[email protected]',
url='https://github.com/arantonitis/soar',
packages=['soar', 'soar.brains', 'soar.gui', 'soar.robot', 'soar.sim', 'soar.worlds'],
package_data={'': ['*.gif']},
entry_points={'console_scripts': ['soar = soar.__main__:main',]},
install_requires=['pyserial>=3.0,<4.0', 'matplotlib>=3.0,<4.0'],
python_requires='>=3.3',
license='LGPLv3',
classifiers=['License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Development Status :: 5 - Production/Stable',
'Framework :: Robot Framework',
'Intended Audience :: Education',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'],
)