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 40
|
#!/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",
"Programming Language :: Python :: 3",
]
setup(
name='libpyfoscam',
version='1.2.2',
description='Python Library for Foscam IP Cameras',
long_description=open('README.rst', 'r').read(),
author='Viswanathan S',
author_email='viswa.swami@gmail.com',
url='https://github.com/krmarien/python-foscam',
include_package_data=True,
license='LGPLv3+',
packages=find_packages(exclude=['tests']),
zip_safe=False,
keywords=['foscam', 'Camera', 'IPC'],
)
|