25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
482 B

#!/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',
url='https://git.someserver.de/seba/fynnwacom',
packages=['fynncom'],
install_requires=['click', 'pyyaml'],
entry_points={
'console_scripts': [
'fynncom = fynncom.fynncom:cli'
]
},
)