Mercurial > odfcast
annotate setup.py @ 5:f804af69b783
We need py3o.template now with the TemplateConvertView
author | Björn Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Fri, 26 Sep 2014 15:35:48 +0200 |
parents | f2cd3c54a132 |
children | d5970cf6367d |
rev | line source |
---|---|
1 | 1 # -*- coding: utf-8 -*- |
2 | |
3 from setuptools import setup, find_packages | |
4 | |
5 version = '0.1' | |
6 | |
7 setup( | |
8 name='odfcast', | |
9 version=version, | |
10 description="A conversion http service based on py3o", | |
11 long_description=open("README.rst").read(), | |
12 classifiers=[ | |
13 "Development Status :: 3 - Alpha", | |
14 "Operating System :: POSIX :: Linux", | |
15 "Programming Language :: Python", | |
16 ], | |
17 keywords='OpenOffice PDF', | |
18 author='Björn Ricks', | |
19 author_email='bjoern.ricks@intevation.de', | |
20 url='', | |
21 license='', | |
22 packages=find_packages(exclude=[]), | |
23 namespace_packages=['py3o'], | |
24 include_package_data=True, | |
25 zip_safe=True, | |
26 install_requires=[ | |
27 'flask' | |
28 'requests', | |
5
f804af69b783
We need py3o.template now with the TemplateConvertView
Björn Ricks <bjoern.ricks@intevation.de>
parents:
1
diff
changeset
|
29 'py3o.tempate', |
1 | 30 'py3o.renderers.pyuno', |
31 'setuptools', | |
32 ], | |
33 ) |