diff options
author | Lionel <lionel.miquel46@gmail.com> | 2018-12-16 14:52:12 +0100 |
---|---|---|
committer | Lionel <lionel.miquel46@gmail.com> | 2018-12-16 14:52:12 +0100 |
commit | 469adba31f7ec1b5e2fa167db2b8fe9718d972fa (patch) | |
tree | 9079c0294a7cfdb11233eccc20bd6f94c30f875a /setup.py | |
parent | 26a854d455976caf2edbd124fc2bfe066ce61403 (diff) | |
download | aneatocli-469adba31f7ec1b5e2fa167db2b8fe9718d972fa.tar.gz aneatocli-469adba31f7ec1b5e2fa167db2b8fe9718d972fa.zip |
Added files for pip packages. Also added a test file that doesn't work (sadly) for the moment.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..cc070f1 --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +from setuptools import setup + +setup(name='neatocontrols', + version='0.9', + description='A GUI for controlling your Neato Robotics device. Based on pybotvac', + classifiers=[ + 'Environment :: X11 Applications', + 'Development Status :: 3 - Alpha', + 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', + 'Programming Language :: Python :: 2.7', + 'Natural Language :: English', + 'Topic :: Home Automation' + ], + keywords='neat neato cli robotics botvac neatocontrols pybotvac', + url='http://github.com/MIQUELLIONEL/neatocontrols', + author='Miquel Lionel', + author_email='lionelmiquel@sfr.fr', + license='GPLv3.0', + packages=['botvac'], + include_package_data=True, + install_requires=[ + 'pybotvac', + 'docopt==0.6.2', + ], + zip_safe=False) |