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 40 41 42 43 44
|
from setuptools import setup
import os.path
setup_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(setup_directory, 'README.rst')) as readme_file:
long_description = readme_file.read()
setup(
name='glfw',
version='2.8.0',
description='A ctypes-based wrapper for GLFW3.',
long_description=long_description,
url='https://github.com/FlorianRhiem/pyGLFW',
author='Florian Rhiem',
author_email='florian.rhiem@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: MacOS X',
'Environment :: X11 Applications',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Graphics',
'Topic :: Scientific/Engineering :: Visualization',
],
packages=['glfw'],
package_data={
# include GLFW shared library and Visual C++ runtimes in wheel package
'glfw': [
'glfw3.dll',
'libglfw.3.dylib',
'wayland/libglfw.so',
'x11/libglfw.so',
'libglfw.so',
'msvcr120.dll',
]
},
extras_require={
'preview': ['glfw_preview']
}
)
|