changeset 1:f2cd3c54a132

Add setup.py
author Björn Ricks <bjoern.ricks@intevation.de>
date Fri, 26 Sep 2014 14:26:02 +0200
parents 4a34f72f036b
children 745a53c8b4f2
files setup.cfg setup.py
diffstat 2 files changed, 35 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/setup.cfg	Fri Sep 26 14:26:02 2014 +0200
@@ -0,0 +1,3 @@
+[aliases]
+release = egg_info -RDb "" sdist --formats=gztar,zip bdist_egg bdist_wheel
+release_upload = egg_info -RDb "" sdist --formats=gztar,zip bdist_egg bdist_wheel upload
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/setup.py	Fri Sep 26 14:26:02 2014 +0200
@@ -0,0 +1,32 @@
+# -*- coding: utf-8 -*-
+
+from setuptools import setup, find_packages
+
+version = '0.1'
+
+setup(
+    name='odfcast',
+    version=version,
+    description="A conversion http service based on py3o",
+    long_description=open("README.rst").read(),
+    classifiers=[
+        "Development Status :: 3 - Alpha",
+        "Operating System :: POSIX :: Linux",
+        "Programming Language :: Python",
+    ],
+    keywords='OpenOffice PDF',
+    author='Björn Ricks',
+    author_email='bjoern.ricks@intevation.de',
+    url='',
+    license='',
+    packages=find_packages(exclude=[]),
+    namespace_packages=['py3o'],
+    include_package_data=True,
+    zip_safe=True,
+    install_requires=[
+        'flask'
+        'requests',
+        'py3o.renderers.pyuno',
+        'setuptools',
+    ],
+)
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)