/[opental]/opental/pax/setup.py
ViewVC logotype

Diff of /opental/pax/setup.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.5 by lalo, Mon Dec 30 00:05:41 2002 UTC revision 1.6 by lalo, Wed Feb 26 19:59:14 2003 UTC
# Line 1  Line 1 
1  #!/usr/bin/env python  #!/usr/bin/env python
2    
3    # patch distutils if it can't cope with the "classifiers" keyword
4    import sys
5    if sys.version < '2.2.3':
6        from distutils.dist import DistributionMetadata
7        DistributionMetadata.classifiers = None
8    
9  from distutils.core import setup  from distutils.core import setup
10  setup (name = "pax",  setup (name = "pax",
11         version = "1.0",         version = "1.0alpha",
12         description = "The Pythonic API for XML",         description = "The Pythonic API for XML",
13           long_description = "A DOM-like library for handling structure (typically XML) data in a way that makes sense for python programmers",
14           keywords = "xml library transform",
15           classifiers = [
16               'Topic :: Text Processing :: Markup :: XML'
17           ],
18         author = "Lalo Martins",         author = "Lalo Martins",
19         author_email = "lalo@laranja.org",         author_email = "lalo@laranja.org",
20         url = "http://python.laranja.org/pax/",         url = "http://python.laranja.org/pax/",
21           license = "public domain",
22         package_dir = {'pax':'.'},         package_dir = {'pax':'.'},
23         packages = ['pax']         packages = ['pax'],
24         )         )

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26