forked from PixelStereo/pyviscam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 791 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name = 'pyviscam',
packages = ['pyviscam'],
version = '0.0.5',
description = 'Control camera through Visca protocol',
author = 'Pixel Stereo',
url='https://github.com/PixelStereo/pyviscam',
download_url = 'https://github.com/PixelStereo/pyviscam/tarball/0.0.5.zip',
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)