forked from kitao/pyxel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (51 loc) · 1.34 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
import setuptools
from pyxel import VERSION
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='pyxel',
version=VERSION,
description='A retro game development environment in Python',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/kitao/pyxel',
author='Takashi Kitao',
author_email='takashi.kitao@gmail.com',
license='MIT',
classifiers=(
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Topic :: Games/Entertainment',
'Topic :: Multimedia :: Graphics',
'Topic :: Multimedia :: Sound/Audio',
),
packages=[
'pyxel',
'pyxel.editor',
'pyxel.examples',
'pyxel.examples.assets',
],
package_data={
'': [
'*.png',
'*.gif',
],
},
install_requires=[
'numpy',
'glfw',
'PyOpenGL',
'sounddevice',
'Pillow',
],
python_requires='>=3',
entry_points={
'console_scripts': [
'pyxel=pyxel.editor:run',
'install_pyxel_examples=pyxel.examples:install',
],
},
)