-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 988 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='PyTouch',
version='0.1.0',
packages=find_packages(),
url='https://github.com/campact/kb-user',
license='MIT License',
author='Moritz Nisblé',
author_email='moritz.nisble@gmx.de',
description='Python reimplementation of the foozled typing tutor KTouch from KDEs education package.',
package_data={
'pytouch.resources.courses': ['*.xsd', '*.xml'],
},
# Also include license and readme in installation
data_files=[('', ['LICENSE', 'README.md'])],
# Bootstrap nose to be able to replace setuptools test command by nosetests
setup_requires=['nose>=1.0'],
install_requires=[
'SQLAlchemy',
'lxml',
'blinker',
],
tests_require=['coverage'],
entry_points={
'console_scripts': [
'pytouch = pytouch.main:manage',
],
'gui_scripts': [
'pytouch-gui = pytouch.main:manage',
]
}
)