forked from romanlv/trml2pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request romanlv#4 from CalPolyResDev/master
Python 3.4 compatibility, <ul>/<li> support, QR barcode support
- Loading branch information
Showing
9 changed files
with
414 additions
and
263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,23 @@ | ||
import os | ||
|
||
from setuptools import find_packages, setup | ||
|
||
# http://www.ewencp.org/blog/a-brief-introduction-to-packaging-python/ | ||
|
||
# http://www.ewencp.org/blog/a-brief-introduction-to-packaging-python/ | ||
setup( | ||
name = 'trml2pdf', | ||
version = '0.2', | ||
description = | ||
'''Tiny RML2PDF is a tool to easily create PDF document using special HTML-like markup language. | ||
name='trml2pdf', | ||
version='0.2', | ||
description='''Tiny RML2PDF is a tool to easily create PDF document using special HTML-like markup language. | ||
It can be used as a Python library or as a standalone binary. It converts a RML, an XML dialect that lets you define the precise appearance of a printed document, to a PDF. You can use your existing tools to generate an input file that exactly describes the layout of a printed document, and RML2PDF converts it into PDF. RML is a much more powerfull and flexible alternative to XSL:FO. | ||
The executable read a RML file to the standard input and output a PDF file to the standard output.''', | ||
keywords = 'pdf reportlab', | ||
keywords='pdf reportlab', | ||
platforms=["any"], | ||
license = 'GNU LESSER GENERAL PUBLIC LICENSE', | ||
author = 'Fabien Pinckaers', | ||
author_email = '[email protected]', | ||
maintainer = 'Roman Lyashov', | ||
maintainer_email = '[email protected]', | ||
url = 'http://github.com/romanlv/trml2pdf/', | ||
install_requires = ['reportlab>=2.6'], | ||
dependency_links = [], | ||
license='GNU LESSER GENERAL PUBLIC LICENSE', | ||
author='Fabien Pinckaers', | ||
author_email='[email protected]', | ||
maintainer='Roman Lyashov', | ||
maintainer_email='[email protected]', | ||
url='http://github.com/romanlv/trml2pdf/', | ||
install_requires=['reportlab>=3.2.0', 'six>=1.9.0'], | ||
dependency_links=[], | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Environment :: Plugins', | ||
|
@@ -29,14 +26,13 @@ | |
'Programming Language :: Python', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
], | ||
entry_points = { | ||
'console_scripts': [ | ||
'trml2pdf = trml2pdf.trml2pdf:main', | ||
], | ||
}, | ||
entry_points={ | ||
'console_scripts': [ | ||
'trml2pdf = trml2pdf.trml2pdf:main', | ||
], | ||
}, | ||
|
||
packages = find_packages(), | ||
include_package_data = True, | ||
packages=find_packages(), | ||
include_package_data=True, | ||
test_suite="tests", | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.