forked from MyreMylar/pygame_gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (50 loc) · 1.99 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
import atexit
from setuptools import setup
from setuptools.command.develop import develop
class DevelopOnlyInstall(develop):
def run(self):
def _post_install():
from stringify import stringify_py
stringify_py(source_path='pygame_gui/data',
destination_file='pygame_gui/core/_string_data.py')
atexit.register(_post_install)
develop.run(self)
setup(
cmdclass={'develop': DevelopOnlyInstall},
name='pygame_gui',
version='0.6.0',
description='A GUI module for pygame 2',
long_description="Helps create GUIs for games made using pygame 2. "
"Features HTML-style text formatting, "
"theme files to control the look and a system to manage"
" multiple windows of GUI stuff.",
keywords=["pygame", "gui", "ui"],
url='https://github.com/MyreMylar/pygame_gui',
download_url='https://github.com/MyreMylar/pygame_gui/archive/v_060.tar.gz',
author='Dan Lawrence',
author_email='[email protected]',
license='MIT',
packages=['pygame_gui',
'pygame_gui.core',
'pygame_gui.core.interfaces',
'pygame_gui.core.drawable_shapes',
'pygame_gui.elements',
'pygame_gui.elements.text',
'pygame_gui.windows',
'pygame_gui.data'],
zip_safe=False,
python_requires='>=3.5',
setup_requires=[],
install_requires=['pygame>=1.9.5'],
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)