3131from setuptools .command .build_ext import build_ext
3232
3333
34+ version = '7.1.0'
35+
36+
3437class optional_build_ext (build_ext ):
3538 """This class subclasses build_ext and allows
3639 the building of C extensions to fail.
@@ -100,13 +103,14 @@ def read(*rnames):
100103
101104setup (
102105 name = 'zope.interface' ,
103- version = '7.0.4.dev0' ,
106+ version = version ,
104107 url = 'https://github.com/zopefoundation/zope.interface' ,
105108 license = 'ZPL 2.1' ,
106109 description = 'Interfaces for Python' ,
107110 author = 'Zope Foundation and Contributors' ,
108- author_email = 'zope-dev@zope.org ' ,
111+ author_email = 'zope-dev@zope.dev ' ,
109112 long_description = long_description ,
113+ long_description_content_type = 'text/x-rst' ,
110114 classifiers = [
111115 "Development Status :: 5 - Production/Stable" ,
112116 "Intended Audience :: Developers" ,
@@ -119,6 +123,7 @@ def read(*rnames):
119123 "Programming Language :: Python :: 3.10" ,
120124 "Programming Language :: Python :: 3.11" ,
121125 "Programming Language :: Python :: 3.12" ,
126+ "Programming Language :: Python :: 3.13" ,
122127 "Programming Language :: Python :: Implementation :: CPython" ,
123128 "Programming Language :: Python :: Implementation :: PyPy" ,
124129 "Framework :: Zope :: 3" ,
@@ -137,7 +142,7 @@ def read(*rnames):
137142 extras_require = {
138143 'docs' : ['Sphinx' ,
139144 'repoze.sphinx.autointerface' ,
140- 'sphinx_rtd_theme ' ],
145+ 'furo ' ],
141146 'test' : tests_require ,
142147 'testing' : testing_extras ,
143148 },
0 commit comments