2
# -*- coding: utf-8 -*-
4
# Copyright © 2012 Umang Varma <umang.me@gmail.com>
6
# This file is part of indicator-stickynotes.
8
# indicator-stickynotes is free software: you can redistribute it and/or
9
# modify 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 (at your
11
# option) any later version.
13
# indicator-stickynotes is distributed in the hope that it will be useful, but
14
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18
# You should have received a copy of the GNU General Public License along with
19
# indicator-stickynotes. If not, see <http://www.gnu.org/licenses/>.
21
from distutils.core import setup
24
setup(name='indicator-stickynotes',
26
description='Sticky Notes AppIndicator',
28
author_email='umang.me@gmail.com',
29
url='https://www.launchpad.net/indicator-stickynotes/',
30
packages=['stickynotes',],
31
scripts=['indicator-stickynotes.py',],
32
data_files=[('Icons', glob.glob("Icons/*.png")),
33
('/usr/share/icons/hicolor/48x48/apps/',
34
('Icons/48x48/indicator-stickynotes.png',)),
35
('/usr/share/icons/hicolor/256x256/apps/',
36
('Icons/256x256/indicator-stickynotes.png',)),
37
('/usr/share/applications/',
38
('indicator-stickynotes.desktop',)),
39
('', ('COPYING', 'style.css', 'StickyNotes.glade')),]