File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22 Change History
33================
44
5- 6.0.1 (unreleased )
5+ 6.0.1 (2025-04-13 )
66==================
77
88 - repozo: fix restoring on stdout.
Original file line number Diff line number Diff line change 1515from setuptools import setup
1616
1717
18- version = '6.0.1.dev0'
19-
20-
2118def read (path ):
2219 with open (path ) as f :
2320 return f .read ()
2421
2522
2623long_description = read ("README.rst" ) + "\n \n " + read ("CHANGES.rst" )
2724
28- tests_require = [
29- 'manuel' ,
30- 'zope.testing' ,
31- 'zope.testrunner >= 4.4.6' ,
32- ]
3325
3426setup (
3527 name = "ZODB" ,
36- version = version ,
28+ version = '6.0.1' ,
3729 author = "Jim Fulton" ,
3830 author_email = "jim@zope.com" ,
3931 maintainer = "Zope Foundation and Contributors" ,
@@ -65,15 +57,20 @@ def read(path):
6557 ],
6658 description = long_description .split ('\n ' , 2 )[1 ],
6759 long_description = long_description ,
60+ long_description_content_type = 'text/x-rst' ,
6861 extras_require = {
69- 'test' : tests_require ,
62+ 'test' : [
63+ 'manuel' ,
64+ 'zope.testing' ,
65+ 'zope.testrunner >= 4.4.6' ,
66+ ],
7067 'docs' : [
7168 'Sphinx < 7' ,
7269 'ZODB' ,
7370 'j1m.sphinxautozconfig' ,
7471 'sphinx_rtd_theme' ,
7572 'sphinxcontrib_zopeext' ,
76- ]
73+ ],
7774 },
7875 install_requires = [
7976 'persistent >= 4.4.0' ,
You can’t perform that action at this time.
0 commit comments