-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #304 from zopefoundation/tseaver-lint_squishing
Get 'tox -e lint' woking again
- Loading branch information
Showing
44 changed files
with
2,652 additions
and
1,193 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 |
---|---|---|
|
@@ -94,56 +94,55 @@ def read(*rnames): | |
|
||
|
||
long_description = ( | ||
read('README.rst') | ||
+ '\n' + | ||
read('CHANGES.rst') | ||
) | ||
|
||
setup(name='zope.interface', | ||
version='6.5.dev0', | ||
url='https://github.com/zopefoundation/zope.interface', | ||
license='ZPL 2.1', | ||
description='Interfaces for Python', | ||
author='Zope Foundation and Contributors', | ||
author_email='[email protected]', | ||
long_description=long_description, | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Zope Public License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"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", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Framework :: Zope :: 3", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
], | ||
packages=find_packages('src'), | ||
package_dir={'': 'src'}, | ||
namespace_packages=["zope"], | ||
cmdclass={ | ||
'build_ext': optional_build_ext, | ||
}, | ||
test_suite='zope.interface.tests', | ||
include_package_data=True, | ||
zip_safe=False, | ||
tests_require=tests_require, | ||
install_requires=['setuptools'], | ||
python_requires='>=3.7', | ||
extras_require={ | ||
'docs': ['Sphinx', | ||
'repoze.sphinx.autointerface', | ||
'sphinx_rtd_theme'], | ||
'test': tests_require, | ||
'testing': testing_extras, | ||
}, | ||
ext_modules=ext_modules, | ||
keywords=['interface', 'components', 'plugins'], | ||
read('README.rst') + '\n' + read('CHANGES.rst') | ||
) | ||
|
||
setup( | ||
name='zope.interface', | ||
version='6.5.dev0', | ||
url='https://github.com/zopefoundation/zope.interface', | ||
license='ZPL 2.1', | ||
description='Interfaces for Python', | ||
author='Zope Foundation and Contributors', | ||
author_email='[email protected]', | ||
long_description=long_description, | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Zope Public License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"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", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Framework :: Zope :: 3", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
], | ||
packages=find_packages('src'), | ||
package_dir={'': 'src'}, | ||
namespace_packages=["zope"], | ||
cmdclass={ | ||
'build_ext': optional_build_ext, | ||
}, | ||
test_suite='zope.interface.tests', | ||
include_package_data=True, | ||
zip_safe=False, | ||
tests_require=tests_require, | ||
install_requires=['setuptools'], | ||
python_requires='>=3.7', | ||
extras_require={ | ||
'docs': ['Sphinx', | ||
'repoze.sphinx.autointerface', | ||
'sphinx_rtd_theme'], | ||
'test': tests_require, | ||
'testing': testing_extras, | ||
}, | ||
ext_modules=ext_modules, | ||
keywords=['interface', 'components', 'plugins'], | ||
) |
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
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
Oops, something went wrong.