Skip to content

Commit a290d84

Browse files
committed
upload to pypi
1 parent e41dca6 commit a290d84

2 files changed

Lines changed: 29 additions & 10 deletions

File tree

File renamed without changes.

setup.py

Lines changed: 29 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,36 @@
44
import os
55

66

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+
]
1025

1126
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',
1833
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'],
2039
)

0 commit comments

Comments
 (0)