This repository has been archived by the owner on Aug 15, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
92 lines (84 loc) · 2.35 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
86
87
88
89
90
91
92
#/usr/bin/env python
import io
import re
from setuptools import setup, find_packages
import sys
if sys.version_info[:3] < (3, 4):
raise SystemExit("Toga requires Python 3.4+.")
with io.open('./toga_demo/__init__.py', encoding='utf8') as version_file:
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", version_file.read(), re.M)
if version_match:
version = version_match.group(1)
else:
raise RuntimeError("Unable to find version string.")
with io.open('README.rst', encoding='utf8') as readme:
long_description = readme.read()
setup(
name='toga-demo',
version=version,
description='A demonstration of the capabilities of the Toga widget toolkit.',
long_description=long_description,
author='Russell Keith-Magee',
author_email='[email protected]',
url='http://pybee.org/toga-demo',
include_package_data=True,
packages=find_packages(),
package_data={
'toga_demo': ['icons/*.icns', 'icons/*.png'],
},
install_requires=[
'toga==%s' % version
],
entry_points={
'console_scripts': [
'toga-demo = toga_demo.__main__:run',
]
},
license='New BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Utilities',
],
options={
'app': {
'formal_name': 'Toga Demo',
'bundle': 'org.pybee',
# 'icon': 'icons/macos',
},
# 'ios': {
# 'app_requires': [
# 'toga-ios'
# ]
# },
'django': {
'app_requires': [
'toga-django'
]
},
'macos': {
'app_requires': [
]
},
'linux': {
'app_requires': [
]
},
'windows': {
'app_requires': [
]
},
# 'android': {
# 'app_requires': [
# 'toga-android'
# ]
# }
}
)