diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 15 |
1 files changed, 13 insertions, 2 deletions
@@ -13,16 +13,27 @@ with open('click/__init__.py', 'rb') as f: setup( name='click', + version=version, + url='https://www.palletsprojects.com/p/click/', author='Armin Ronacher', author_email='armin.ronacher@active-4.com', - version=version, - url='http://github.com/pallets/click', + maintainer='Pallets team', + maintainer_email='contact@palletsprojects.com', packages=['click'], description='A simple wrapper around optparse for ' 'powerful command line utilities.', + license='BSD', classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent' 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ], ) |
