summaryrefslogtreecommitdiffstats
path: root/app_templates/tdeioslave/setup.py
blob: ce2a99a4c08110bebe1ca1ef037294e8be66808c (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
26
27
28
29
30
#!/usr/bin/python
###########################################################################
# setup - description                                                     #
# ------------------------------                                          #
# begin     : Fri Jun 27 2005                                             #
# copyright : (C) 2005 by AUTHOR                                          #
# email     : YOUR@EMAIL.com                                              #
#                                                                         #
###########################################################################
#                                                                         #
#   This program is free software; you can redistribute it and/or modify  #
#   it under the terms of the GNU General Public License as published by  #
#   the Free Software Foundation; either version 2 of the License, or     #
#   (at your option) any later version.                                   #
#                                                                         #
###########################################################################

import tdedistutils

tdedistutils.setup(name="tdeioslave",
    version="0.1.0",
    author="AUTHOR",
    author_email="YOUR@EMAIL.com",
    url="http://www.TESTAPP.com/",
    min_kde_version = "3.0.0",
    min_tqt_version = "3.0.0",
    license = "GPL",
    application_data = ['src/tdeioslave.py'],
    docbooks = [ ('doc/en','en') ],
    tdeioslaves = [ ('src/tdeioslave.protocol','tdeioslave.py')] )