From 3dcb3c8ed5fc4ce6b0e57137944d598fa9de8484 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Sat, 26 Mar 2016 12:21:57 -0700 Subject: [PATCH] setup: remove zip_safe, no one uses eggs anymore Modern wheels are installed unpacked. --- setup.cfg | 6 ------ setup.py | 1 - 2 files changed, 7 deletions(-) diff --git a/setup.cfg b/setup.cfg index 6f49f5f6c..c088700bd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,10 +1,4 @@ [easy_install] -# Tahoe-LAFS actually does work at least as well as any package works when -# zipped, but zipping eggs causes various problems -# (http://bugs.python.org/setuptools/issue33 ), and generally makes it harder -# for people to get at the source code, and doesn't actually provide any -# benefits that I am aware of. -zip_ok=False # Tahoe-LAFS depends upon several libraries (foolscap, twisted, pycryptopp, # zfec, and others). Left to its own devices, setuptools will look on PyPI for diff --git a/setup.py b/setup.py index d13751f52..d7c866f06 100644 --- a/setup.py +++ b/setup.py @@ -275,6 +275,5 @@ setup(name=APPNAME, }, setup_requires=setup_requires, entry_points = { 'console_scripts': [ 'tahoe = allmydata.scripts.runner:run' ] }, - zip_safe=False, # We prefer unzipped for easier access. **setup_args )