|
4 | 4 | import os |
5 | 5 |
|
6 | 6 |
|
7 | | -def read(fname): |
8 | | - return open(os.path.join(os.path.dirname(__file__), fname)).read() |
9 | | - |
| 7 | +CLASSIFIERS = [ |
| 8 | + 'Development Status :: 3 - Alpha', |
| 9 | + 'Environment :: Console', |
| 10 | + 'Intended Audience :: Customer Service', |
| 11 | + 'Intended Audience :: Developers', |
| 12 | + 'Intended Audience :: Education', |
| 13 | + 'Intended Audience :: Science/Research', |
| 14 | + 'Intended Audience :: Telecommunications Industry', |
| 15 | + 'Natural Language :: English', |
| 16 | + 'Operating System :: POSIX', |
| 17 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 18 | + 'Topic :: Multimedia :: Sound/Audio', |
| 19 | + 'Topic :: Utilities', |
| 20 | + "Programming Language :: Python", |
| 21 | + "Programming Language :: Python :: 2", |
| 22 | + "Programming Language :: Python :: 2.6", |
| 23 | + "Programming Language :: Python :: 2.7", |
| 24 | +] |
10 | 25 |
|
11 | 26 | setup( |
12 | | - name='foscam', |
13 | | - version='1.0', |
14 | | - description='Hashicorp vault backend for python-keyring', |
15 | | - long_description=read('README.md'), |
16 | | - author='Philipp Schmitt', |
17 | | - author_email='philipp.schmitt@post.lu', |
| 27 | + name='pyfoscam', |
| 28 | + version='1.2', |
| 29 | + description='Foscam Python Library for H.264 IP Cameras (FI9821W/P/HD816W/P)', |
| 30 | + long_description=open('README.rst', 'r').read(), |
| 31 | + author='Cherish Chen', |
| 32 | + author_email='sinchb128@gmail.com', |
18 | 33 | url='https://github.com/quatanium/foscam-python-lib', |
19 | | - packages=find_packages(), |
| 34 | + include_package_data=True, |
| 35 | + license='MIT', |
| 36 | + packages=find_packages(exclude=['tests']), |
| 37 | + zip_safe=False, |
| 38 | + keywords=['foscam', 'Camera', 'IPC'], |
20 | 39 | ) |
0 commit comments