Skip to content

Commit

Permalink
Use zope.security version needed for Python 3.12+.
Browse files Browse the repository at this point in the history
  • Loading branch information
icemac committed Aug 16, 2024
1 parent 260eddf commit d693584
Showing 1 changed file with 8 additions and 18 deletions.
26 changes: 8 additions & 18 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,23 +61,13 @@ def read(*rnames):
author='Zope Corporation and Contributors',
author_email='[email protected]',
description='Efficient File Implementation for Zope Applications',
long_description=(
read('README.rst')
+ '\n\n' +
'.. contents::'
+ '\n\n' +
read('src', 'zope', 'file', 'README.rst')
+ '\n\n' +
read('src', 'zope', 'file', 'download.rst')
+ '\n\n' +
read('src', 'zope', 'file', 'upload.rst')
+ '\n\n' +
read('src', 'zope', 'file', 'contenttype.rst')
+ '\n\n' +
read('src', 'zope', 'file', 'browser.rst')
+ '\n\n' +
read('CHANGES.rst')
),
long_description=(read('README.rst') + '\n\n' + '.. contents::' + '\n\n' +
read('src', 'zope', 'file', 'README.rst') + '\n\n' +
read('src', 'zope', 'file', 'download.rst') + '\n\n' +
read('src', 'zope', 'file', 'upload.rst') + '\n\n' +
read('src', 'zope', 'file', 'contenttype.rst') + '\n\n' +
read('src', 'zope', 'file', 'browser.rst') + '\n\n' +
read('CHANGES.rst')),
keywords="zope3 web html ui file pattern",
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down Expand Up @@ -123,7 +113,7 @@ def read(*rnames):
'zope.location',
'zope.mimetype >= 2.3.0',
'zope.schema',
'zope.security >= 4.1.0',
'zope.security >= 7.1',
'zope.size',
],
include_package_data=True,
Expand Down

0 comments on commit d693584

Please sign in to comment.