X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/a08ebc700e22f6aee8147cb5b5323a6c040b12db..a16251fd5fb481e97f05fd488ad718ba2147396b:/doc/conf.py?ds=sidebyside diff --git a/doc/conf.py b/doc/conf.py index ed93095..da25c6c 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -52,9 +52,11 @@ copyright = '2014, MINES ParisTech' # built documents. # # The short X.Y version. -version = '1.0' +with open('../linpy/_version.py') as file: + exec(file.read()) +version = __version__ # The full version, including alpha/beta/rc tags. -release = '1.0a' +release = __version__ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -242,7 +244,7 @@ man_pages = [ # dir menu entry, description, category) texinfo_documents = [ ('index', 'LinPy', 'LinPy Documentation', - 'MINES ParisTech', 'LinPy', 'A polyheral library based on ISL.', + 'MINES ParisTech', 'LinPy', 'A polyheral library based on isl.', 'Miscellaneous'), ]