forked from Python3pkg/PyGLEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1014 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 1014 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
from setuptools import setup, find_packages
import PyGLEngine
setup(
name='PyGLEngine',
version=PyGLEngine.__version__,
author='Kyle Rockman',
author_email='kyle.rockman@mac.com',
install_requires=open('requirements.txt').read().splitlines(),
packages = find_packages(),
package_data = {
# If any subfolder contains these extensions, include them:
'': ['*.json',],
},
zip_safe=False,
url='https://github.com/rocktavious/PyGLEngine',
license=open('LICENSE.txt').read(),
description='Python Based OpenGL Game Engine',
long_description=open('README.txt').read(),
classifiers=[
"Development Status :: 3 - Alpha",
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Testing',
],
)