Skip to content
This repository has been archived by the owner on Aug 30, 2019. It is now read-only.

Commit

Permalink
(QA-2355) Add classifiers
Browse files Browse the repository at this point in the history
Adds classifier meta-data to setup.py
  • Loading branch information
jpinsonault committed Feb 5, 2016
1 parent 6ed44ea commit adaffe7
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,25 @@
from setuptools import setup
from vmpooler_client.version import version

classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
]

#===================================================================================================
# Main
#===================================================================================================
setup(name='vmpooler-client',
version=version,
description='Manage resources in the vmpooler service from the command-line.',
author='Ryan Gard',
author_email='ryan.gard@puppetlabs.com',
url='https://github.com/puppetlabs/vmpooler-client',
packages=['vmpooler_client', 'vmpooler_client.commands'],
scripts=['vmpooler_client_app.py']
version=version,
description='Manage resources in the vmpooler service from the command-line.',
author='Ryan Gard',
author_email='ryan.gard@puppetlabs.com',
url='https://github.com/puppetlabs/vmpooler-client',
packages=['vmpooler_client', 'vmpooler_client.commands'],
scripts=['vmpooler_client_app.py'],
classifiers=classifiers
)

0 comments on commit adaffe7

Please sign in to comment.