-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 763 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
# coding=utf-8
from distutils.core import setup
__author__ = 'kanairen'
setup(name='DepthProjector',
version='1.0.4',
description='DepthMap generator using Perspective Projection.',
author='Ren Kanai',
author_email='turutekab@gmail.com',
url='https://github.com/kanairen/DepthProjector',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Graphics :: Capture"
],
packages=['DepthProjector'])