-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 707 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="pybotvac",
version="0.0.28",
description="Python package for controlling Neato pybotvac Connected vacuum robot",
long_description=long_description,
long_description_content_type="text/markdown",
author="Stian Askeland",
author_email="stianaske@gmail.com",
url="https://github.com/stianaske/pybotvac",
license="Licensed under the MIT license. See LICENSE file for details",
packages=["pybotvac"],
package_dir={"pybotvac": "pybotvac"},
package_data={"pybotvac": ["cert/*.crt"]},
install_requires=["requests", "requests_oauthlib", "voluptuous"],
)