-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare a release which does not yet support Python 3.13.
- Loading branch information
Showing
2 changed files
with
43 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,50 +29,46 @@ def read(*rnames): | |
'pytest-mock', | ||
] | ||
|
||
|
||
setup( | ||
name='RestrictedPython', | ||
version='7.2.dev0', | ||
url='https://github.com/zopefoundation/RestrictedPython', | ||
license='ZPL 2.1', | ||
description=( | ||
'RestrictedPython is a defined subset of the Python language which ' | ||
'allows to provide a program input into a trusted environment.' | ||
), | ||
long_description=read('README.rst') + '\n' + read('CHANGES.rst'), | ||
long_description_content_type='text/x-rst', | ||
classifiers=[ | ||
'Development Status :: 6 - Mature', | ||
'License :: OSI Approved :: Zope Public License', | ||
'Programming Language :: Python', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3', | ||
'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 :: Implementation :: CPython', | ||
'Topic :: Security', | ||
], | ||
keywords='restricted execution security untrusted code', | ||
author='Zope Foundation and Contributors', | ||
author_email='[email protected]', | ||
project_urls={ | ||
"Documentation": "https://restrictedpython.readthedocs.io/", | ||
"Source": "https://github.com/zopefoundation/RestrictedPython", | ||
"Tracker": "https://github.com/zopefoundation/RestrictedPython/issues", | ||
}, | ||
packages=find_packages('src'), | ||
package_dir={'': 'src'}, | ||
install_requires=[ | ||
], | ||
python_requires=">=3.7, <3.14", | ||
extras_require={ | ||
'test': tests_require, | ||
'docs': ['Sphinx', 'sphinx_rtd_theme'], | ||
}, | ||
include_package_data=True, | ||
zip_safe=False | ||
) | ||
setup(name='RestrictedPython', | ||
version='7.2.dev0', | ||
url='https://github.com/zopefoundation/RestrictedPython', | ||
license='ZPL 2.1', | ||
description=( | ||
'RestrictedPython is a defined subset of the Python language which ' | ||
'allows to provide a program input into a trusted environment.'), | ||
long_description=read('README.rst') + '\n' + read('CHANGES.rst'), | ||
long_description_content_type='text/x-rst', | ||
classifiers=[ | ||
'Development Status :: 6 - Mature', | ||
'License :: OSI Approved :: Zope Public License', | ||
'Programming Language :: Python', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3', | ||
'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 :: Implementation :: CPython', | ||
'Topic :: Security', | ||
], | ||
keywords='restricted execution security untrusted code', | ||
author='Zope Foundation and Contributors', | ||
author_email='[email protected]', | ||
project_urls={ | ||
"Documentation": "https://restrictedpython.readthedocs.io/", | ||
"Source": "https://github.com/zopefoundation/RestrictedPython", | ||
"Tracker": | ||
"https://github.com/zopefoundation/RestrictedPython/issues", | ||
}, | ||
packages=find_packages('src'), | ||
package_dir={'': 'src'}, | ||
install_requires=[], | ||
python_requires=">=3.7, <3.13", | ||
extras_require={ | ||
'test': tests_require, | ||
'docs': ['Sphinx', 'sphinx_rtd_theme'], | ||
}, | ||
include_package_data=True, | ||
zip_safe=False) |