-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 741 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 741 Bytes
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
#!/usr/bin/python
from __future__ import unicode_literals
from setuptools import setup, find_packages
import sys
if sys.version_info[0] == 2:
sys.exit("Requires python3!")
setup(
name="qork",
version="0.1.0",
description="ModernGL-based python game framework inspired on pygame-zero",
url="https://github.com/filpcoder/qork",
author="Grady O'Connell",
author_email="flipcoder@gmail.com",
license="MIT",
packages=["qork"],
include_package_data=True,
install_requires=[
"moderngl",
"moderngl-window",
"numpy",
"pillow",
"pyglm",
"cson",
],
entry_points="""
[console_scripts]
qork=qork.zero:main
""",
zip_safe=False,
)