-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 785 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 785 Bytes
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
from setuptools import find_packages, setup
setup(
name='Roomba980-Python',
version='2.0',
license='MIT',
description='Python program and library to control iRobot WiFi Roomba ' \
'Vacuum Cleaner',
author_email='nick.waterton@med.ge.com',
url='https://github.com/NickWaterton/Roomba980-Python',
packages=find_packages(),
python_requires='>=3.6',
install_requires=['paho-mqtt'],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'roomba=roomba.__main__:main',
'roomba-getpassword=roomba.getpassword:main'
]
}
)