-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (37 loc) · 1.21 KB
/
Copy pathsetup.py
File metadata and controls
42 lines (37 loc) · 1.21 KB
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
from setuptools import setup, find_packages
import sys, os
here = os.path.abspath(os.path.dirname(__file__))
version = '1.3.4'
install_requires = [
# 'opencv-python',
'imgcat',
'easydict',
'PyOpenGL',
'PyOpenGL-accelerate',
# 'PyOpenGL_accelerate',
]
readme = open("README.md").read()
setup(name='pyglview',
version=version,
description="Python OpenGL direct viewer instead of OpenCV imshow/waitKey.",
long_description="https://github.com/aieater/python_glview\n\n"+readme,
long_description_content_type='text/markdown',
classifiers=(
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
),
keywords='opencv opengl python imshow waitkey viewer realtime',
author='Pegara, Inc.',
author_email='info@pegara.com',
url='https://github.com/aieater/python_pyglview',
license='MIT',
packages=['pyglview'],
zip_safe=False,
install_requires=install_requires,
entry_points={}
)