forked from moderngl/moderngl-window
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (51 loc) · 1.86 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
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup, find_namespace_packages
setup(
name="moderngl-window",
version="2.1.1",
description="A cross platform helper library for ModernGL making window creation and resource loading simple",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url="https://github.com/moderngl/moderngl_window",
author="Einar Forselv",
author_email="[email protected]",
packages=find_namespace_packages(include=['moderngl_window', 'moderngl_window.*']),
include_package_data=True,
keywords=['moderngl', 'window', 'context'],
license='MIT',
platforms=['any'],
python_requires='>=3.5',
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Games/Entertainment',
'Topic :: Multimedia :: Graphics',
'Topic :: Multimedia :: Graphics :: 3D Rendering',
'Topic :: Scientific/Engineering :: Visualization',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
install_requires=[
'moderngl<6',
'pyglet>=1.4.2,<2',
'numpy>=1.16,<2',
'pyrr>=0.10.3,<1',
'Pillow>=5',
],
extras_require={
"PySide2": ['PySide2<6'],
"pyqt5": ['PyQt5'],
"glfw": ['glfw'],
"PySDL2": ['PySDL2'],
"pywavefront": ["pywavefront>=1.2.0,<2"],
"trimesh": ["trimesh>=3.2.6,<4", "scipy>=1.3.2"],
"tk": ["pyopengltk>=0.0.3"],
"pygame": ["pygame==2.0.0.dev6"],
},
project_urls={
'Documentation': 'https://moderngl-window.readthedocs.io',
'ModernGL': 'https://github.com/moderngl/moderngl',
},
)