diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-03-25 00:50:27 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-03-25 00:50:27 +0100 |
commit | 87440084fc62f1ebb1a2ad96041740df994071f4 (patch) | |
tree | e4f5ca51ce515691564dd41dda7d80d362755956 /setup.py | |
parent | 987bd61dafdbcd7e348efb4d8a6968fe35ba6799 (diff) | |
download | portato-87440084fc62f1ebb1a2ad96041740df994071f4.tar.gz portato-87440084fc62f1ebb1a2ad96041740df994071f4.tar.bz2 portato-87440084fc62f1ebb1a2ad96041740df994071f4.zip |
Update manpage creation
Diffstat (limited to '')
-rw-r--r-- | setup.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -13,7 +13,7 @@ import sys, os, os.path from distutils.core import setup -from portato.constants import VERSION, DATA_DIR, ICON_DIR, PLUGIN_DIR, TEMPLATE_DIR +from portato.constants import VERSION, DATA_DIR, ICON_DIR, PLUGIN_DIR, TEMPLATE_DIR, APP from build_manpage import build_manpage @@ -28,9 +28,11 @@ data_files = [ (PLUGIN_DIR, plugin_list("gpytage", "notify", "etc_proposals", "reload_portage"))] # do the distutils setup -setup(name="Portato", +setup(name=APP, version = VERSION, description = "GTK-Frontend to Portage", + long_description = + """%s is a frontend to the package manager of Gentoo and related distributions: Portage. It is meant to be used for browsing the tree and installing packages and their dependencies. It knows how to deal with useflags and masked packages, so it can make handling packages a lot easier.""" % APP, license = "GPLv2", url = "http://portato.origo.ethz.ch/", author = "René 'Necoro' Neumann", |