File: setup.py

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 (13 lines) | stat: -rw-r--r-- 367 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
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'}
     )