-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modified: setup.py modified: src/lib/conf.py modified: src/lib/pactray.py modified: src/lib/tray.py modified: src/lib/updates.py new file: src/scripts/pactray
- Loading branch information
thermionix
committed
Sep 14, 2015
1 parent
be0af09
commit 4cdb5c7
Showing
7 changed files
with
26 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,15 +3,16 @@ | |
from distutils.core import setup | ||
|
||
setup(name='pactray', | ||
version='0.1', | ||
license='GPL3', | ||
description='a systray application that notifies that user about new updates for Arch Linux', | ||
author=['Thermionix'], | ||
author_email=['[email protected]'], | ||
url='https://github.com/Thermionix/pactray', | ||
package_dir={'pactray':'src/lib/'}, | ||
packages=['pactray'], | ||
data_files=[('share/pactray/', ['src/share/archlogo.png', 'src/share/archlogo.svg']), | ||
('share/applications', ['src/pactray.desktop'])] | ||
version='0.1', | ||
license='GPL3', | ||
description='a systray application that notifies that user about new updates for Arch Linux', | ||
author=['Thermionix'], | ||
author_email=['[email protected]'], | ||
url='https://github.com/Thermionix/pactray', | ||
package_dir={'pactray':'src/lib/'}, | ||
packages=['pactray'], | ||
data_files=[('share/pactray/', ['src/share/archlogo.png', 'src/share/archlogo.svg']), | ||
('share/applications', ['src/pactray.desktop'])], | ||
scripts=['src/scripts/pactray'] | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../lib/pactray.py |