-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 800 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 800 Bytes
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
from setuptools import setup, find_packages
setup(
name = "trayify",
version = "0.0.3",
packages = find_packages(),
scripts = [],
# Purposely left empty. This could contain PyQT or PyGTK, but we're not
# enforcing that a package be installed on the machine before we can be
# used. If someone only wants GTK apps, they shouldn't be required to have
# the PyQT libraries installed as well.
install_requires = [],
package_data = {
'trayify': ['*.py'],
},
# metadata for upload to PyPI
author = "Kristofer M White",
author_email = "me@kmwhite.net",
description = "A python module for super simple system tray applications",
license = "BSD",
keywords = "system tray gtk qt",
url = "http://kmwhite.github.com/trayify/",
)