Skip to content
Snippets Groups Projects
setup.py 1.44 KiB
Newer Older
Florent Aide's avatar
Florent Aide committed
from setuptools import setup, find_packages
import sys, os

Florent Aide's avatar
Florent Aide committed

DATA_FILES=[
    ("py3o/renderers/juno", (
            "py3o/renderers/juno/py3oconverter.jar",
            )),
    ]

Florent Aide's avatar
Florent Aide committed
setup(name='py3o.renderers.juno',
      version=version,
      description="A Java based driver for py3o",
      long_description=open("README.txt").read(),
      classifiers=[
        "Programming Language :: Python",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Development Status :: 4 - Beta",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: BSD License",
        "Operating System :: OS Independent",
        "Programming Language :: Java",
        "Programming Language :: Python :: 2",
        "Topic :: Printing",
Florent Aide's avatar
Florent Aide committed
      ],
      keywords='LibreOffice OpenOffice PDF',
      author='Florent Aide & Jerome Collette',
      author_email='florent.aide@gmail.com, collette.jerome@gmail.com',
      url='http://bitbucket.org/faide/py3o.renderers.juno',
Florent Aide's avatar
Florent Aide committed
      license='BSD License',
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      namespace_packages=['py3o'],
      include_package_data=True,
      zip_safe=True,
Florent Aide's avatar
Florent Aide committed
      install_requires=[
          'setuptools',
Florent Aide's avatar
Florent Aide committed
          ],
      entry_points=dict(
      # -*- Entry points: -*-
      ),
      test_suite = 'nose.collector',
      )