Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cf2affc

Browse files
committedJul 2, 2014
add trove classifiers to setup.py
1 parent a47bb9c commit cf2affc

File tree

1 file changed

+21
-11
lines changed

1 file changed

+21
-11
lines changed
 

‎setup.py

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,36 @@
1111
from version import VERSION
1212

1313
long_description = '''
14-
The Vzzual API is designed to allow web and app developers to incorporate image and video analysis into their applications my off-loading processing to Vzzual.
14+
The Vzzual API is designed to allow web and app developers to incorporate image
15+
and video analysis into their applications my off-loading processing to Vzzual.
1516
16-
This is the official python client that wraps the Vzzual REST-like API (http://www.vzzual.com/page_API.html).
17+
This is the official python client that wraps the Vzzual REST-like API
18+
(http://www.vzzual.com/page_API.html).
1719
'''
1820

1921
setup(
20-
name = 'vzzual',
22+
name='vzzual',
2123
url="https://github.com/vzzual/vzzual-python",
22-
packages = ['vzzual'],
23-
version = VERSION,
24-
description = 'Official python wrapper for the Vzzual API',
24+
packages=['vzzual'],
25+
version=VERSION,
26+
description='Official python wrapper for the Vzzual API',
2527
author='Vzzual',
2628
author_email='support@vzzual.com',
2729
license='MIT License',
2830
install_requires=[
29-
'requests>=2.2.1',
30-
'python-dateutil',
31-
'simplejson',
32-
'nose2>=0.4.7',
33-
'httpretty>=0.8.0'
31+
'requests>=2.2.1',
32+
'python-dateutil',
33+
'simplejson',
34+
'nose2>=0.4.7',
35+
'httpretty>=0.8.0'
36+
],
37+
classifiers=[
38+
'Development Status :: 4 - Beta',
39+
'Intended Audience :: Developers',
40+
'License :: OSI Approved :: MIT License',
41+
'Programming Language :: Python :: 2.7',
42+
'Programming Language :: Python :: 3.3',
43+
'Programming Language :: Python :: 3.4',
3444
],
3545
long_description=long_description
3646
)

0 commit comments

Comments
 (0)
Please sign in to comment.