forked from pywavefront/PyWavefront
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 loc) · 975 Bytes
/
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
from distutils.core import setup
VERSION = '0.1.1'
setup(
name='PyWavefront',
version=VERSION,
author='Kurt Yoder',
author_email='[email protected]',
url='https://github.com/greenmoss/PyWavefront',
description='Python/pyglet library for importing Wavefront .obj files',
long_description=open('README.md').read(),
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows', # XP
'Operating System :: POSIX :: Linux',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Multimedia :: Graphics :: 3D Rendering',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=['pywavefront'],
requires=['pyglet'],
)