forked from romanlv/trml2pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.26 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
from setuptools import find_packages, setup
# upload
# python setup.py sdist upload -r pypi
setup(
name='trml2pdf',
version='0.4.3',
description='''Tiny RML2PDF is a tool to easily create PDF document using special HTML-like markup language. It converts a RML, an XML dialect that lets you define the precise appearance of a printed document, to a PDF.''',
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>=3.2.0', 'six>=1.9.0'],
dependency_links=[],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
entry_points={
'console_scripts': [
'trml2pdf = trml2pdf.trml2pdf:main',
],
},
packages=find_packages(),
include_package_data=True,
test_suite="tests",
)