1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: Add python setup files
This enables us to use standard python packaging tools for the package
creation.
Author: Raphael Hertzog <hertzog@debian.org>
Forwarded-Upstream: no (there's no clear upstream anymore)
--- /dev/null
+++ python-trml/setup.py
@@ -0,0 +1,13 @@
+#!/usr/bin/env python
+
+from distutils.core import setup
+setup(name="TRML2PDF",
+ version="1.0",
+ author="Fabien Pinckaers",
+ author_email="fp@tiny.be",
+ license="LGPL",
+ description="Tiny RML2PDF is a tool to easily create PDF document without programming.",
+ packages = ['trml2pdf'],
+ package_dir = {'trml2pdf': 'trml2pdf'}
+ )
+
|