forked from pyg3t/pyg3t
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·43 lines (38 loc) · 1.23 KB
/
setup.py
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
# Copyright (C) 2009-2010 PyG3T development team
# Please see the accompanying LICENSE file for further information.
from distutils.core import setup
import pyg3t
long_description = """\
PyG3T, the Python gettext Translation Toolkit, is a collection of
tools for working with GNU gettext translation files."""
packages = ['pyg3t']
scriptnames = ['gtcat',
'gtcheckargs',
'gtcompare',
'gtgrep',
'gtmerge',
'gtprevmsgdiff',
'gtwdiff',
'gtxml',
'poabc',
'podiff',
'popatch',
'poselect']
scripts = ['bin/%s' % scriptname
for scriptname in scriptnames]
setup(name='pyg3t',
version=pyg3t.__version__,
author='PyG3T development team',
#author_email='',
maintainer='PyG3T development team',
#maintainer_email='',
url='https://launchpad.net/pyg3t',
description='PyG3T, python gettext translation toolkit',
long_description=long_description,
download_url='https://launchpad.net/pyg3t/+download',
#classifiers=[],
platforms='all',
packages=packages,
scripts=scripts,
license='GPL')