File: add_setup_py.diff

package info (click to toggle)
python-trml2pdf 1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 516 kB
  • ctags: 116
  • sloc: python: 565; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 660 bytes parent folder | download | duplicates (2)
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'}
+     )
+