-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
33 lines (31 loc) · 816 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
33
#!/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="ilya@sukhanov.net",
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]",
"pexpect",
"colour",
"pyRobots",
],
setup_requires=[
"coverage",
"nose",
"mock",
"pylint",
"pyprof2calltree",
],
package_data={"": ["LICENSE", "NOTICE"]},
license=open("LICENSE").read(),
)