Use a larger size hint for main widget.
[maegirls] / trunk / 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 i18n_qm_files=["i18n/maegirls_el.qm"]
26
27 setup(
28     name='maegirls',
29     version='1.3',
30     description="MaeGirls",
31     author="Stefanos Harhalakis",
32     author_email="v13@v13.gr",
33     url="not-available-yet",
34     packages=['maegirls'],
35     package_dir={'maegirls': 'src'},
36     scripts=["maegirls"],
37     data_files=[
38             ("share/maegirls/translations", i18n_qm_files)
39             ],
40     long_description="MaeGirls - Monitor women's cycle"
41     )
42
43 #    py_modules=['src/core.py', 'src/graph.py', 'src/wifi-su.py',
44 #       'src/wifi.py', 'src/win.py'],
45
46 # vim: set ts=8 sts=4 sw=4 noet formatoptions=r ai nocindent:
47