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
18 author='Hartmut Goebel',
19 author_email='h.goebel@goebel-consult.de',
20 url = "http://openoffice-python.origo.ethz.ch/",
21 download_url = "http://openoffice-python.origo.ethz.ch/download",
25 'Development Status :: 3 - Alpha',
26 'Intended Audience :: Developers',
27 'License :: OSI Approved :: GNU General Public License (GPL)',
28 'Operating System :: POSIX',
29 'Programming Language :: Python',
30 'Topic :: Software Development :: Libraries :: Python Modules'
36 description='Basemodule for openoffice interfaces',
37 packages=['openoffice'],
41 name='openoffice.interact',
42 description='Module for eays interacting with openoffice',
43 packages=['openoffice.interact'],
44 files=['openoffice.interact.test'],
45 requires=['openoffice', 'python(>=2.3)'],
49 # name='openoffice.files',
50 # description='Module for easy working with openoffice files',
51 # packages=['openoffice.files'],
52 # requires=['openoffice', 'python(>=2.3)'],