-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (19 loc) · 824 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
setup(
name = 'quotation-tools',
version = "0.0.5",
description = "Tools for parsing and maintaining quotation collections "
"using the QEL format.",
author = "A.M. Kuchling",
author_email = "[email protected]",
url = "http://www.amk.ca/qel/",
packages = ['qel'],
scripts = [#'scripts/fortune2qel',
'scripts/qtformat', 'scripts/qtgrep', 'scripts/qtmerge'],
data_files = [('/usr/lib/sgml/', ['xml/qel-2.01.dtd',
'xml/quotation-tools.cat',
'xml/ibtwsh6.dtd',
'xml/xhtml-lat1.ent',
'xml/xhtml-special.ent',
'xml/xhtml-symbol.ent'])]
)