comparison setup.py @ 399:f7cb69b0da9e

change version number to 0.6.2
author catherine.devlin@gmail.com
date Sun, 19 Sep 2010 15:42:47 -0400
parents 7812e00ff5b1
children 731f2c93c1cd
comparison
equal deleted inserted replaced
398:7812e00ff5b1 399:f7cb69b0da9e
5 from distutils.core import setup 5 from distutils.core import setup
6 def find_packages(): 6 def find_packages():
7 return ['sqlpython'] 7 return ['sqlpython']
8 import sys 8 import sys
9 9
10 python3 = sys.version_info[0] > 2 10 install_requires = ['pyparsing>=1.5.5']
11 if python3:
12 install_requires = [] # will rely on local pyparsing_py3 copy
13 extra_modules = ["pyparsing_py3"]
14 else:
15 install_requires = ['pyparsing>=1.5.1']
16 extra_modules = []
17 setup( 11 setup(
18 name="cmd2", 12 name="cmd2",
19 version="0.6.1", 13 version="0.6.2",
20 py_modules=["cmd2"]+extra_modules, 14 py_modules=["cmd2"],
21 use_2to3=True, 15 use_2to3=True,
22 16
23 # metadata for upload to PyPI 17 # metadata for upload to PyPI
24 author = 'Catherine Devlin', 18 author = 'Catherine Devlin',
25 author_email = 'catherine.devlin@gmail.com', 19 author_email = 'catherine.devlin@gmail.com',
26 description = "Extra features for standard library's cmd module", 20 description = "Extra features for standard library's cmd module",
27 license = 'MIT', 21 license = 'MIT',
28 keywords = 'command prompt console cmd', 22 keywords = 'command prompt console cmd',
29 url = 'http://packages.python.org/cmd2/', 23 url = 'http://packages.python.org/cmd2/',
30 install_requires = install_requires, 24 install_requires = install_requires,
31
32 long_description = """Enhancements for standard library's cmd module. 25 long_description = """Enhancements for standard library's cmd module.
33 26
34 Drop-in replacement adds several features for command-prompt tools: 27 Drop-in replacement adds several features for command-prompt tools:
35 28
36 * Searchable command history (commands: "hi", "li", "run") 29 * Searchable command history (commands: "hi", "li", "run")