v1.0 changelog
[drlaunch] / drlaunch / setup.py
1 #!/usr/bin/env python
2 # coding=UTF-8
3 #
4 # Copyright (C) 2010 Stefanos Harhalakis
5 #
6 # This file is part of maegirls.
7 #
8 # maegirls is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # maegirls is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with maegirls.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 # $Id: setup.py 2266 2010-02-21 19:33:27Z v13 $
22
23 from distutils.core import setup
24
25 setup(
26     name='drlaunch',
27     version="1.0",
28     description="DrLaunch",
29     author="Stefanos Harhalakis",
30     author_email="v13@v13.gr",
31     url="not-available-yet",
32     packages=['drlaunch', 'drlaunch.xdg'],
33     package_dir={'drlaunch': 'src'},
34 #    scripts=["maegirls"],
35 #    data_files=[
36 #           ("share/maegirls/translations", i18n_qm_files)
37 #           ],
38     long_description="DrLaunch - Application launcher widget with portrait mode"
39     )
40
41 #    py_modules=['src/core.py', 'src/graph.py', 'src/wifi-su.py',
42 #       'src/wifi.py', 'src/win.py'],
43
44 # vim: set ts=8 sts=4 sw=4 noet formatoptions=r ai nocindent:
45