4 from setuptools import setup
6 from distutils.core import setup
8 # patch distutils if it can't cope with the "classifiers" or
9 # "download_url" keywords
10 from sys import version
12 from distutils.dist import DistributionMetadata
13 DistributionMetadata.classifiers = None
14 DistributionMetadata.download_url = None
17 name='openoffice-python',
18 description='Enhanced Python interfaces to OpenOffice.org',
19 packages=['openoffice'],
21 author='Hartmut Goebel',
22 author_email='h.goebel@goebel-consult.de',
23 url = "http://openoffice-python.origo.ethz.ch/",
24 download_url = "http://openoffice-python.origo.ethz.ch/download",
28 'Development Status :: 3 - Beta',
29 'Intended Audience :: Developers',
30 'License :: OSI Approved :: GNU General Public License (GPL)',
31 'Operating System :: POSIX',
32 'Programming Language :: Python',
33 'Topic :: Software Development :: Libraries :: Python Modules'
35 requires=['python(>=2.3)'],