summaryrefslogtreecommitdiffstats
path: root/pavement.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-12-10 20:48:38 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-12-10 20:48:38 +0100
commitc484268fbef4ef07455eb856d3924224c784d3e2 (patch)
tree9792966733612bd5ace2b9837ddc5bf24a00db07 /pavement.py
parentmegaupload #451, uploadedto #443 (diff)
downloadpyload-c484268fbef4ef07455eb856d3924224c784d3e2.tar.xz
little test cases
Diffstat (limited to 'pavement.py')
-rw-r--r--pavement.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/pavement.py b/pavement.py
index 618617ef0..e2ac10b81 100644
--- a/pavement.py
+++ b/pavement.py
@@ -25,18 +25,19 @@ setup(
version="0.4.9",
description='Fast, lightweight and full featured download manager.',
long_description=open(PROJECT_DIR / "README").read(),
- keywords='',
+ keywords = ('pyload', 'download-manager', 'one-click-hoster', 'download'),
url="http://pyload.org",
download_url='http://pyload.org/download',
license='GPL v3',
author="pyLoad Team",
author_email="support@pyload.org",
+ platforms = ('Any',),
#package_dir={'pyload': 'src'},
packages=['pyload'],
#package_data=find_package_data(),
#data_files=[],
include_package_data=True,
- exclude_package_data={'pyload': ['docs*', 'scripts*']}, #exluced from build but not from sdist
+ exclude_package_data={'pyload': ['docs*', 'scripts*', 'tests*']}, #exluced from build but not from sdist
# 'bottle >= 0.10.0' not in list, because its small and contain little modifications
install_requires=['thrift >= 0.8.0', 'jinja2', 'pycurl', 'Beaker', 'BeautifulSoup>=3.2, <3.3'] + extradeps,
extras_require={
@@ -232,6 +233,10 @@ def generate_locale():
@task
+def tests():
+ call(["nosetests2"])
+
+@task
def virtualenv(options):
"""Setup virtual environment"""
if path(options.dir).exists():