-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="turgles",
version="0.1",
author="Simon Davy",
author_email="[email protected]",
description=("An OpenGL ES renderer for LOGO style turtles."),
license="MIT",
keywords="turtle education kids opengl",
url="https://github.com/AllTheWayDown/turgles",
packages=find_packages(exclude=['tests']),
package_dir={'turgles': 'turgles'},
package_data={'turgles': ['shaders/*.vert', 'shaders/*.frag']},
long_description=read('README.rst'),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Education",
"Topic :: Games/Entertainment :: Simulation",
],
test_suite='turgles.tests',
install_requires=[
'cffi>=0.6,<0.8',
'pycparser>=2.10,<3.0',
'pyglet==1.2alpha1',
],
)