-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
85 lines (79 loc) · 2.79 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
from setuptools import setup, find_packages
import os
version = '0.1.2'
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ''
try:
TODO = open(os.path.join(here, 'TODO.txt')).read()
except IOError:
TODO = ''
try:
AUTHORS = open(os.path.join(here, 'AUTHORS.txt')).read()
except IOError:
AUTHORS = ''
try:
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
except IOError:
CHANGES = ''
development_requires = [
]
tests_require = [
'pytest',
'pytest-cov',
'pytest-pep8',
'pytest-xdist',
]
long_description = README + '\n\n' + TODO + '\n\n' + AUTHORS + '\n\n' + CHANGES
setup(name='kivy_statecharts',
version=version,
description="Kivy Statecharts -- adds a statechart system to kivy",
long_description=long_description,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Intended Audience :: Developers',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: BSD :: FreeBSD',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Artistic Software',
'Topic :: Games/Entertainment',
'Topic :: Multimedia :: Graphics :: 3D Rendering',
'Topic :: Multimedia :: Graphics :: Capture :: Digital Camera',
'Topic :: Multimedia :: Graphics :: Presentation',
'Topic :: Multimedia :: Graphics :: Viewers',
'Topic :: Multimedia :: Sound/Audio :: Players :: MP3',
'Topic :: Multimedia :: Video :: Display',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: User Interfaces',
],
keywords='kivy statecharts',
author='Jeff Pittman',
author_email='[email protected]',
url='http://github.com/geojeff/kivy_statecharts',
bugtrack_url='https://github.com/geojeff/kivy_statecharts/issues',
license=' MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'Kivy>=1.4.1',
],
tests_require=tests_require,
extras_require={
'testing': tests_require,
'development': development_requires,
},
)