comparison setup.py @ 6:71067a445663

added README
author catherine@localhost
date Wed, 14 May 2008 10:56:05 -0400
parents 1ea887b51cad
children 71ff2f442683
comparison
equal deleted inserted replaced
5:2d6280e022e4 6:71067a445663
2 from setuptools import setup, find_packages 2 from setuptools import setup, find_packages
3 3
4 setup( 4 setup(
5 name="cmd2", 5 name="cmd2",
6 version="0.2.2", 6 version="0.2.2",
7 py_modules = ['cmd2','flagReader'], 7 py_modules = ['cmd2','flagReader','bootstrap'],
8 8
9 # metadata for upload to PyPI 9 # metadata for upload to PyPI
10 author = 'Catherine Devlin', 10 author = 'Catherine Devlin',
11 author_email = 'catherine.devlin@gmail.com', 11 author_email = 'catherine.devlin@gmail.com',
12 description = "Extra features for standard library's cmd module", 12 description = "Extra features for standard library's cmd module",
13 license = 'MIT', 13 license = 'MIT',
14 keywords = 'command prompt console cmd', 14 keywords = 'command prompt console cmd',
15 url = 'http://www.assembla.com/wiki/show/python-cmd2', 15 url = 'http://www.assembla.com/wiki/show/python-cmd2',
16 package_data = {'':['*.cfg']},
16 17
17 long_description = """Enhancements for standard library's cmd module. 18 long_description = """Enhancements for standard library's cmd module.
18 19
19 Drop-in replacement adds several features for command-prompt tools: 20 Drop-in replacement adds several features for command-prompt tools:
20 21