File: setup.py

package info (click to toggle)
python-textile 2.0.10-3.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 148 kB
  • ctags: 100
  • sloc: python: 1,346; makefile: 51
file content (22 lines) | stat: -rw-r--r-- 780 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""This is Textile. A Humane Web Text Generator.

Textile is a XHTML generator using a simple markup developed by Dean Allen. This is a Python port with support for code validation, itex to MathML translation, Python code coloring and much more.
"""

from distutils.core import setup

doclines = __doc__.split("\n")

setup(name = "textile",
      version = '2.0.10',
      description = doclines[0],
      maintainer = "Roberto A. F. De Almeida",
      maintainer_email = "roberto@dealmeida.net",
      url = "http://dealmeida.net/projects/textile/",
      download_url = "http://dealmeida.net/code/textile-2.0.10.tar.gz",
      py_modules = ['textile'],
      platforms = ["any"],
      license = 'Freely Distributable',
      long_description = "\n".join(doclines[2:]),
     )