-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
14 lines (13 loc) · 795 Bytes
/
Copy pathsetup.py
File metadata and controls
14 lines (13 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from distutils.core import setup
setup(name='PyZenity',
version='0.1.7',
description='An easy to use frontend to Zenity',
author='Brian Ramos',
author_email='bramos@brianramos.com',
maintainer='Brian Ramos',
maintainer_email='bramos@brianramos.com',
url='http://www.brianramos.com/?page_id=110',
download_url='http://www.brianramos.com/software/PyZenity/PyZenity-0.1.7.tar.gz',
license='MIT',
long_description='PyZenity is an easy to use interface to Zenity for Python. Zenity is normally called from scripts by invoking it with a multitude of command line parameters that it uses to construct its interfaces. This module hides the details of invoking the command and presents simple API functions.',
py_modules=['PyZenity'])