-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
29 lines (29 loc) · 1003 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
setup(
name="DepthVisualizer",
packages=["DepthVisualizer"],
version='0.24',
license="MIT",
description="Point Cloud & Depth Map visualization library",
author="Eren Balatkan",
author_email="[email protected]",
url="https://github.com/Navhkrin/DepthVisualizer",
download_url="https://github.com/Navhkrin/DepthVisualizer/archive/v0.2.tar.gz",
keywords=["Point Cloud", "Depth Map", "OpenGL", "Renderer"],
install_requires=[
'glfw',
'PyOpenGL',
'PyGLM',
'numpy'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)