Skip to content

Commit

Permalink
Add classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
myint committed Nov 2, 2013
1 parent a26ae29 commit 0a04e62
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,22 @@ def version(filename):


with open('README.rst') as readme:
core.setup(name='cppclean',
version=version(os.path.join('cpp', '__init__.py')),
description='Find problems in C++ source that slow development '
'of large code bases.',
long_description=readme.read(),
license='Apache license',
url='https://github.com/myint/cppclean',
packages=['cpp'],
scripts=['cppclean'])
core.setup(
name='cppclean',
version=version(os.path.join('cpp', '__init__.py')),
description='Find problems in C++ source that slow development '
'of large code bases.',
long_description=readme.read(),
license='Apache license',
url='https://github.com/myint/cppclean',
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Quality Assurance',
],
packages=['cpp'],
scripts=['cppclean'])

0 comments on commit 0a04e62

Please sign in to comment.