-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
46 lines (41 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
__pckg__ = "pysphero"
__dpckg__ = __pckg__.replace("-", "_")
__version__ = "0.0.12"
def long_description():
with open("README.md") as readme:
return readme.read()
setup(
name=__pckg__,
version=__version__,
description="Unofficial library for sphero v2.",
long_description=long_description(),
long_description_content_type="text/markdown",
author="Andrey Lemets",
author_email="[email protected]",
url="https://github.com/EnotYoyo/pysphero",
packages=find_packages(),
include_package_data=True,
license="MIT License",
install_requires=[
"bluepy==1.3.0",
],
extras_require={
"tests": [
"pytest==4.2.0",
"pytest-cov==2.6.1",
],
"gatt": [
"gatt==0.2.7",
]
},
keywords=["sphero", "sphero-ble", "bolt"],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)