Skip to content

Commit

Permalink
fix setup.py version
Browse files Browse the repository at this point in the history
  • Loading branch information
damien.neil committed Feb 22, 2009
1 parent cf146bc commit e2c22be
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions XPath/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,20 @@ def find_package_modules(self, package, package_dir):

return modules

setup(name="xpath",
version="1.0",
setup(name="py-dom-xpath",
version="0.1",
description="XPath for DOM trees",
long_description="""\
py-dom-xpath is a pure Python implementation of XPath 1.0. It
supports almost all XPath 1.0, with the main exception being the
namespace axis. It operates on DOM 2.0 nodes, and works well with
xml.dom.minidom.
py-dom-xpath requires Python 2.5 or greater.""",
author='Damien Neil',
author_email='damien.neil@gmail.com',
url='http://code.google.com/p/py-dom-xpath/',
download_url='http://py-dom-xpath.googlecode.com/files/py-dom-xpath-0.1.tar.gz',
packages=['xpath'],
cmdclass={
'build_py':build_py,
Expand Down

0 comments on commit e2c22be

Please sign in to comment.