From daf2693927ee6503b2b4ac45f1522d4eb74e4840 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 24 Jan 2018 10:11:13 +1000 Subject: [PATCH] Add setup.py Fixes #17 --- README.md | 10 ++++++++++ setup.py | 22 ++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100755 setup.py diff --git a/README.md b/README.md index 9eef90d..fd60b72 100644 --- a/README.md +++ b/README.md @@ -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 ---------------------------- diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..14c0480 --- /dev/null +++ b/setup.py @@ -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', + ], + )