1- import io
2- from setuptools import setup , find_packages
1+ from setuptools import find_packages , setup
32
4- readme = open (' README.rst' , encoding = "utf-8" ).read ()
5- changes = open (' CHANGELOG.rst' , encoding = "utf-8" ).read ()
6- version = '0.7.1'
3+ readme = open (" README.rst" , encoding = "utf-8" ).read ()
4+ changes = open (" CHANGELOG.rst" , encoding = "utf-8" ).read ()
5+ version = "0.8"
76
87
98def long_description ():
@@ -28,37 +27,37 @@ def remove_block(text, token, margin=0):
2827
2928
3029setup (
31- name = ' sphinxcontrib-mermaid' ,
30+ name = " sphinxcontrib-mermaid" ,
3231 version = version ,
33- url = ' https://github.com/mgaitan/sphinxcontrib-mermaid' ,
34- download_url = ' https://pypi.python.org/pypi/sphinxcontrib-mermaid' ,
35- license = ' BSD' ,
36- author = ' Martín Gaitán' ,
37- 38- description = ' Mermaid diagrams in yours Sphinx powered docs' ,
32+ url = " https://github.com/mgaitan/sphinxcontrib-mermaid" ,
33+ download_url = " https://pypi.python.org/pypi/sphinxcontrib-mermaid" ,
34+ license = " BSD" ,
35+ author = " Martín Gaitán" ,
36+ 37+ description = " Mermaid diagrams in yours Sphinx powered docs" ,
3938 long_description = long_description (),
40- python_requires = ' >=3.7' ,
39+ python_requires = " >=3.7" ,
4140 classifiers = [
42- ' Development Status :: 4 - Beta' ,
43- ' Environment :: Console' ,
44- ' Environment :: Web Environment' ,
45- ' Intended Audience :: Developers' ,
46- ' License :: OSI Approved :: BSD License' ,
47- ' Operating System :: OS Independent' ,
48- ' Programming Language :: Python' ,
49- ' Programming Language :: Python :: 3' ,
50- ' Programming Language :: Python :: 3.7' ,
51- ' Programming Language :: Python :: 3.8' ,
52- ' Programming Language :: Python :: 3.9' ,
53- ' Programming Language :: Python :: 3.10' ,
54- ' Programming Language :: Python :: 3.11' ,
55- ' Programming Language :: Python :: Implementation :: CPython' ,
56- ' Programming Language :: Python :: Implementation :: PyPy' ,
57- ' Topic :: Documentation' ,
58- ' Topic :: Utilities' ,
41+ " Development Status :: 4 - Beta" ,
42+ " Environment :: Console" ,
43+ " Environment :: Web Environment" ,
44+ " Intended Audience :: Developers" ,
45+ " License :: OSI Approved :: BSD License" ,
46+ " Operating System :: OS Independent" ,
47+ " Programming Language :: Python" ,
48+ " Programming Language :: Python :: 3" ,
49+ " Programming Language :: Python :: 3.7" ,
50+ " Programming Language :: Python :: 3.8" ,
51+ " Programming Language :: Python :: 3.9" ,
52+ " Programming Language :: Python :: 3.10" ,
53+ " Programming Language :: Python :: 3.11" ,
54+ " Programming Language :: Python :: Implementation :: CPython" ,
55+ " Programming Language :: Python :: Implementation :: PyPy" ,
56+ " Topic :: Documentation" ,
57+ " Topic :: Utilities" ,
5958 ],
60- platforms = ' any' ,
59+ platforms = " any" ,
6160 packages = find_packages (),
6261 include_package_data = True ,
63- namespace_packages = [' sphinxcontrib' ],
62+ namespace_packages = [" sphinxcontrib" ],
6463)
0 commit comments