Add setup.py

Fixes #17
pull/26/head
Peter Hutterer 2018-01-24 10:11:13 +10:00
parent eb5efd2e1c
commit daf2693927
2 changed files with 32 additions and 0 deletions

View File

@ -16,6 +16,16 @@ Devices tested and known to be supported:
* Bamboo Spark
* Bamboo Slate
Installation
------------
```
$> git clone http://github.com/tuhiproject/tuhi
$> cd tuhi
$> python3 setup.py install
$> tuhi
```
Units used by this interface
----------------------------

22
setup.py Executable file
View File

@ -0,0 +1,22 @@
#!/usr/bin/python3
from setuptools import setup
setup(name='tuhi',
version='0.1',
description='A daemon to access Wacom Smartpad devices',
long_description=open('README.md', 'r').read(),
url='http://github.com/tuhiproject/tuhi',
packages=['tuhi'],
author='The Tuhi Developers',
author_email='check-github-for-contributors@example.com',
license='GPL',
entry_points={
"console_scripts": ['tuhi = tuhi.base:main']
},
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Programming Language :: Python :: 3',
],
)