forked from stianaske/pybotvac
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 672 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 672 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
from pybotvac import __version__
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='pybotvac',
version=__version__,
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']}
)