fynncom/setup.py

20 lines
512 B
Python
Raw Normal View History

2019-03-17 02:30:56 +01:00
#!/usr/bin/env python
from distutils.core import setup
setup(name='fynncom',
version='0.1.0',
description='Wacom tablet button configuration tool',
author='Sebastian Lohff',
author_email='seba@someserver.de',
2019-03-17 02:32:26 +01:00
url='https://git.someserver.de/seba/fynncom/',
2019-03-17 02:36:05 +01:00
python_requires='>=3.5',
2019-03-17 02:30:56 +01:00
packages=['fynncom'],
install_requires=['click', 'pyyaml'],
entry_points={
'console_scripts': [
'fynncom = fynncom.fynncom:cli'
]
},
)