summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorSylvain Thénault <sylvain.thenault@logilab.fr>2009-01-28 12:18:34 +0100
committerSylvain Thénault <sylvain.thenault@logilab.fr>2009-01-28 12:18:34 +0100
commit9f7b6846b9b51eeec6a84df09e34bc27de53614a (patch)
treea7d92655a0a98e2fb786419609d7932234fe1561 /setup.py
parent3bbacbb0e0de8fe4beaaa157206c8d501b8d8728 (diff)
downloadpylint-git-9f7b6846b9b51eeec6a84df09e34bc27de53614a.tar.gz
setup.py fix
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 49268b6b1..85424f66b 100644
--- a/setup.py
+++ b/setup.py
@@ -175,6 +175,8 @@ def install(**kwargs):
packages = [modname] + get_packages(os.getcwd(), modname)
if USE_SETUPTOOLS and install_requires:
kwargs['install_requires'] = install_requires
+ if USE_SETUPTOOLS and '--force-manifest' in sys.argv:
+ sys.argv.remove('--force-manifest')
kwargs['packages'] = packages
return setup(name = distname,
version = version,