-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
30 lines (28 loc) · 1.18 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, find_namespace_packages
with open('README.md', 'rt', encoding='utf_8') as f:
long_desc = f.read()
setup(
name='spherov2',
version='0.12.1',
author='Hanbang Wang', # and 'Elionardo Feliciano',
author_email='[email protected]', # and '[email protected]',
license='MIT',
description='An unofficial Bluetooth low energy library for Sphero toys in Python.',
long_description=long_desc,
long_description_content_type='text/markdown',
url='https://github.com/artificial-intelligence-class/spherov2.py',
packages=find_namespace_packages(include=['spherov2', 'spherov2.*'],
exclude=["*.test", "*.test.*"]),
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Robot Framework :: Library',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
keywords='robotics Sphero toy bluetooth ble',
python_requires='>=3.7',
install_requires=['numpy', 'transforms3d']
)