-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
55 lines (47 loc) · 1.56 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
#!/usr/bin/env python
from distutils.core import setup
from os.path import dirname, abspath, join
from os import listdir
version = '0.1.8'
# it should be the "kivyunittest" folder near setup.py
expected = join(
dirname(abspath(__file__)), 'kivyunittest'
)
with open(join(expected, '__init__.py'), 'w') as f:
f.write("__version__ = '{}'".format(version))
f.write('')
setup(
name='kivyunittest',
version=version,
description='Unittesting for Kivy framework',
author='Peter Badida',
author_email='[email protected]',
url='https://github.com/KeyWeeUsr/KivyUnitTest',
download_url=(
'https://github.com/KeyWeeUsr/KivyUnitTest/tarball/'
'{}'.format(version)
),
packages=['kivyunittest'],
package_data={
"kivyunittest": [
join('examples', f) for f in listdir(
join(expected, 'examples')
)
]
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Bug Tracking',
'Topic :: Software Development :: Testing',
],
keywords=['unittest', 'testing', 'debug', 'kivy'],
license="License :: OSI Approved :: MIT License",
)