Skip to content

Commit e1ffdcc

Browse files
brnstzscanny
authored andcommitted
Add 'zip_safe' == False to setup.py
1 parent e1beb73 commit e1ffdcc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def text_of(relpath):
6060

6161
LONG_DESCRIPTION = text_of('README.rst') + '\n\n' + text_of('HISTORY.rst')
6262

63+
ZIP_SAFE = False
6364

6465
params = {
6566
'name': NAME,
@@ -77,6 +78,7 @@ def text_of(relpath):
7778
'tests_require': TESTS_REQUIRE,
7879
'test_suite': TEST_SUITE,
7980
'classifiers': CLASSIFIERS,
81+
'zip_safe': ZIP_SAFE,
8082
}
8183

8284
setup(**params)

0 commit comments

Comments
 (0)