summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CREDITS.md1
-rw-r--r--pyload/__init__.py6
-rw-r--r--setup.py8
3 files changed, 9 insertions, 6 deletions
diff --git a/CREDITS.md b/CREDITS.md
index 1460141ae..0eaccc2ee 100644
--- a/CREDITS.md
+++ b/CREDITS.md
@@ -21,7 +21,6 @@ A special thanks to spoob, sebnapi and RaNaN who created pyLoad!
*(alphabetically sorted)*
- - stickell (Stefano) <l.stickell@yahoo.it>
- vuolter (Walter Purcaro) <vuolter@gmail.com>
diff --git a/pyload/__init__.py b/pyload/__init__.py
index ade59b396..e29c81ad7 100644
--- a/pyload/__init__.py
+++ b/pyload/__init__.py
@@ -27,7 +27,11 @@ __status__ = {1: "Planning",
6: "Mature",
7: "Inactive"}[__status_code__] #: PyPI Development Status Classifiers
-__license__ = "GNU Affero General Public License v3"
+__description__ = "Fast, lightweight and full featured download manager"
+
+__license__ = "GNU General Public License v3"
+
+__website__ = "http://pyload.org"
__authors__ = [("Marius" , "mkaay@mkaay.de" ),
("RaNaN" , "Mast3rRaNaN@hotmail.de"),
diff --git a/setup.py b/setup.py
index 48ad45578..5b1e186c6 100644
--- a/setup.py
+++ b/setup.py
@@ -16,13 +16,13 @@ setup(
version=pyload.__version__,
- description='Fast, lightweight and full featured download manager',
+ description=pyload.__description__,
long_description=open(path.join(PROJECT_DIR, "README.md")).read(),
- keywords=["pyload", "download-manager", "one-click-hoster", "download", "jdownloader"],
+ keywords=["pyload", "download", "download-manager", "downloader", "jdownloader", "pycurl", "one-click-hoster"],
- url="http://pyload.org",
+ url=pyload.__website__,
download_url="https://github.com/pyload/pyload/releases",
@@ -44,7 +44,7 @@ setup(
include_package_data=True,
- exclude_package_data={'pyload': ["docs*", "locale*", "tools*"]}, #: exluced from build but not from sdist
+ exclude_package_data={'pyload': ["docs*", "locale*", "tests*"]}, #: exluced from build but not from sdist
install_requires=[
"Beaker >= 1.6",