summaryrefslogtreecommitdiff
path: root/setup.py.in
blob: 0b3d8665cd876203aba34e517df72601b052cf4d (plain)
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
#!/usr/bin/env python

# setup.py.in is converted to setup.py by the configure script. This is not
# intended as the recommended way to build and install itstool. See the INSTALL
# file for details on installing with make. This file is here to make it easier
# to upload itstool to pypi.

from distutils.core import setup

setup(name='itstool',
      version='@VERSION@',
      description='XML to PO and back again using W3C ITS rules',
      author='Shaun McCance',
      author_email='shaunm@gnome.org',
      url='http://itstool.org/',
      scripts=['itstool'],
      data_files=[('@DATADIR@/itstool/its', [
          'its/docbook.its',
          'its/docbook5.its',
          'its/its.its',
          'its/mallard.its',
          'its/ttml.its',
          'its/xhtml.its',
      ])]
)