Skip to content

Commit

Permalink
Update Python version support.
Browse files Browse the repository at this point in the history
  • Loading branch information
icemac committed Oct 16, 2024
1 parent ac25867 commit 9639a4b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,20 @@ def read(*rnames):
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],

packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['z3c'],
include_package_data=True,
zip_safe=False,
python_requires='>=3.7',
python_requires='>=3.8',
install_requires=['setuptools',
'zope.configuration >= 3.8.0',
'zope.component', # technically [zcml]
Expand Down

0 comments on commit 9639a4b

Please sign in to comment.