-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·39 lines (33 loc) · 1.29 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from Cython.Build import cythonize
longDescription = """ed2d is a python 2d game engine that was built to use
modern opengl rendering techniques. The engine can help to create awesome 2d
games."""
setup(
name='ED2D',
version='0.0.1',
author='Alex Marinescu, Matthew Sitton',
author_email='[email protected], [email protected]',
description='2D game engine written in python.',
long_description=longDescription,
license = 'BSD',
keywords='game opengl engine 2D',
url='https://github.com/explosiveduck/ed2d',
packages=['ed2d', 'ed2d.csg', 'ed2d.glmath', 'ed2d.glmath.cython', 'ed2d.opengl', 'ed2d.physics'],
classifiers=[
# find classifiers at the following url
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Games/Entertainment',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
ext_modules=cythonize("ed2d/glmath/cython/*.pyx")
)