31
31
from setuptools .command .build_ext import build_ext
32
32
33
33
34
+ version = '7.1.0'
35
+
36
+
34
37
class optional_build_ext (build_ext ):
35
38
"""This class subclasses build_ext and allows
36
39
the building of C extensions to fail.
@@ -100,13 +103,14 @@ def read(*rnames):
100
103
101
104
setup (
102
105
name = 'zope.interface' ,
103
- version = '7.0.4.dev0' ,
106
+ version = version ,
104
107
url = 'https://github.com/zopefoundation/zope.interface' ,
105
108
license = 'ZPL 2.1' ,
106
109
description = 'Interfaces for Python' ,
107
110
author = 'Zope Foundation and Contributors' ,
108
- author_email = 'zope-dev@zope.org ' ,
111
+ author_email = 'zope-dev@zope.dev ' ,
109
112
long_description = long_description ,
113
+ long_description_content_type = 'text/x-rst' ,
110
114
classifiers = [
111
115
"Development Status :: 5 - Production/Stable" ,
112
116
"Intended Audience :: Developers" ,
@@ -119,6 +123,7 @@ def read(*rnames):
119
123
"Programming Language :: Python :: 3.10" ,
120
124
"Programming Language :: Python :: 3.11" ,
121
125
"Programming Language :: Python :: 3.12" ,
126
+ "Programming Language :: Python :: 3.13" ,
122
127
"Programming Language :: Python :: Implementation :: CPython" ,
123
128
"Programming Language :: Python :: Implementation :: PyPy" ,
124
129
"Framework :: Zope :: 3" ,
@@ -137,7 +142,7 @@ def read(*rnames):
137
142
extras_require = {
138
143
'docs' : ['Sphinx' ,
139
144
'repoze.sphinx.autointerface' ,
140
- 'sphinx_rtd_theme ' ],
145
+ 'furo ' ],
141
146
'test' : tests_require ,
142
147
'testing' : testing_extras ,
143
148
},
0 commit comments