blob: 228aefaa71767547a81c110d17a7cdc4007cb31d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
from setuptools import setup
setup(
name='click',
author='Armin Ronacher',
author_email='armin.ronacher@active-4.com',
version='0.3',
url='http://github.com/mitsuhiko/click',
packages=['click'],
description='A simple wrapper around optparse for '
'powerful command line utilities.',
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)
|