forked from IlyaSukhanov/morseapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 797 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="morseapi",
version="0.0.1",
description="Unofficial API for controlling Wonder Workshops Dot and Dash robots",
author="Ilya Sukhanov",
author_email="[email protected]",
url="https://github.com/IlyaSukhanov/morseapi",
entry_points={
"console_scripts": [
"moto_server = moto.server:main",
],
},
packages=find_packages(exclude=("tests", "tests.*")),
install_requires=[
"pygatt[GATTTOOL]",
"colour",
"pyRobots",
],
setup_requires=[
"coverage",
"nose",
"mock",
"pylint",
"pyprof2calltree",
],
package_data={"": ["LICENSE", "NOTICE"]},
license=open("LICENSE").read(),
)