-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 1.35 KB
/
setup.py
File metadata and controls
31 lines (30 loc) · 1.35 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
from setuptools import setup, find_packages
import os, sys, glob, fnmatch
setup(name="pysentech",
version=0.2,
description="pysentech is a python wrapper for the Sentech USB Camera SDK",
long_description=""" pysentech is a python wrapper for the Sentech USB Camera SDK.
It features a low-level interface for interacting with the C dll directly, and a high-level
interface with more pythonic camera and frame objects.
""",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Multimedia :: Graphics :: Capture :: Digital Camera',
'Topic :: Multimedia :: Video :: Display',
'Topic :: Software Development :: Libraries :: Python Modules'],
author='derricw',
author_email='derricw@gmail.com',
url='https://github.com/derricw/pysentech',
download_url="https://github.com/derricw/pysentech/tarball/0.2",
license='MIT',
packages=['pysentech'],
zip_safe=False,
)