This repository has been archived by the owner on May 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (40 loc) · 1.69 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sys, os
version = '1.3.0'
setup(name='ringo_printtemplate',
version=version,
description="Extension for printtemplates in the ringo webframework",
long_description="""This is a extension for the ringo framework. It allows you to upload printtemplate which can pe prefilled with data of an item for later printing.""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='ringo pyramid extension',
author='Torsten Irländer',
author_email='[email protected]',
url='https://github.com/ringo-framework/ringo_printtemplates',
license='GNU General Public License v2 or later (GPLv2+)',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires= ['python_magic',
'ringo',
'py3o.template',
'py3o.renderers.pyuno',
'genshi',
'requests'],
scripts=['ringo-odfconverter'],
entry_points="""
[paste.app_factory]
main = ringo_printtemplate:main
[babel.extractors]
tableconfig = ringo.lib.i18n:extract_i18n_tableconfig
formconfig = formbar.i18n:extract_i18n_formconfig
""",
message_extractors = {'ringo_printtemplate': [
('**.py', 'python', None),
('templates/**.html', 'mako', None),
('templates/**.mako', 'mako', None),
('**.xml', 'formconfig', None),
('**.json', 'tableconfig', None),
('static/**', 'ignore', None)]},
)