|
| 1 | +import os |
| 2 | +from setuptools import setup, find_packages |
| 3 | + |
| 4 | + |
| 5 | +# Utility function to read the README file. |
| 6 | +# From http://packages.python.org/an_example_pypi_project/setuptools.html. |
| 7 | +def read(fname): |
| 8 | + return open(os.path.join(os.path.dirname(__file__), fname)).read() |
| 9 | + |
| 10 | +setup(name="nodebox-opengl", |
| 11 | + version="1.6", |
| 12 | + description="NodeBox for OpenGL is a free, cross-platform library for " |
| 13 | + "generating 2D animations with Python programming code.", |
| 14 | + long_description=read("nodebox/README.txt"), |
| 15 | + keywords = "2d graphics sound physics games multimedia", |
| 16 | + license = "BSD", |
| 17 | + author="Tom De Smedt, Frederik De Bleser", |
| 18 | + url="http://www.cityinabottle.org/nodebox/", |
| 19 | + packages=find_packages(), |
| 20 | + install_requires=[ |
| 21 | + "pyglet", |
| 22 | + ], |
| 23 | + classifiers=[ |
| 24 | + "Development Status :: 4 - Beta", |
| 25 | + "Environment :: MacOS X", |
| 26 | + "Environment :: Win32 (MS Windows)", |
| 27 | + "Environment :: X11 Applications", |
| 28 | + "Intended Audience :: Developers", |
| 29 | + "Intended Audience :: Education", |
| 30 | + "License :: OSI Approved :: BSD License", |
| 31 | + "Operating System :: MacOS :: MacOS X", |
| 32 | + "Operating System :: Microsoft :: Windows", |
| 33 | + "Operating System :: POSIX :: Linux", |
| 34 | + "Programming Language :: Python", |
| 35 | + "Topic :: Artistic Software", |
| 36 | + "Topic :: Games/Entertainment", |
| 37 | + "Topic :: Multimedia :: Graphics", |
| 38 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 39 | + ], |
| 40 | +) |
0 commit comments