-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathsetup.py
42 lines (39 loc) · 1.32 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
from tickeys import __version__, __author__, __email__
requirements = [
'cython==0.20.2',
'kivy==1.9.0',
'evdev',
'sounddevice',
'soundfile',
'notify2',
]
setup(name='tickeys',
version=__version__,
download_url='https://github.com/BillBillBillBill/Tickeys-linux',
packages=['tickeys'],
package_dir={'tickeys': 'tickeys'},
include_package_data=True,
package_data={'tickeys': ['*.*']},
# data_files=[],
classifiers=[
'Intended Audience :: End Users/Desktop',
'Development Status :: 3 - Alpha',
'Environment :: X11 Applications',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Natural Language :: Chinese (Simplified)',
'Programming Language :: Python :: 2.7',
],
author=__author__,
author_email=__email__,
description='Instant audio feedback when typing. For Linux.',
long_description=open('README.md').read(),
keywords='keyboard typing audio feedback ',
url='https://github.com/BillBillBillBill/Tickeys-linux',
license='MIT',
entry_points={
'console_scripts': ['tickeys = tickeys:main']
},
install_requires=requirements,
tests_require=requirements)