-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
29 lines (28 loc) · 923 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
from setuptools import setup, find_packages
import typetrainer
setup(
name = 'typetrainer',
version = typetrainer.VERSION,
author = 'Anton Bobrov',
author_email = '[email protected]',
description = 'Typing tutor trainer',
long_description = open('README.rst').read().replace('https', 'http'),
zip_safe = False,
packages = find_packages(exclude=('tests', )),
include_package_data = True,
url = 'http://github.com/baverman/typetrainer',
entry_points = {
'gui_scripts': [
'typetrainer = typetrainer.run:run',
]
},
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Topic :: Education"
],
)