-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
39 lines (35 loc) · 1.18 KB
/
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
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/python
from setuptools import setup, find_packages
import os
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Customer Service',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Natural Language :: English',
'Operating System :: POSIX',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Utilities',
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
]
setup(
name='libpyfoscam',
version='1.1',
description='Python Library for Foscam IP Cameras',
long_description=open('README.rst', 'r').read(),
author='Viswanathan S',
author_email='[email protected]',
url='https://github.com/viswa-swami/python-foscam',
include_package_data=True,
license='LGPLv3+',
packages=find_packages(exclude=['tests']),
zip_safe=False,
keywords=['foscam', 'Camera', 'IPC'],
)