-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
34 lines (33 loc) · 1.23 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
from setuptools import setup
setup(
name='pyopengltk',
version='0.0.4',
author='Jon Wright',
author_email='[email protected]',
url='http://github.com/jonwright/pyopengltk',
license='MIT',
description="An opengl frame for pyopengl-tkinter based on ctype",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=['pyopengltk'],
install_requires=[
'pyopengl',
],
keywords=['opengl', 'window', 'context', 'tk', 'tkinter'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Intended Audience :: Developers',
'Topic :: Multimedia :: Graphics',
'Topic :: Multimedia :: Graphics :: 3D Rendering',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)