diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index 80ca320..aee12e5 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -1,6 +1,16 @@ Changelog --------- +v1.0.6 +====== + +* added `to_dict` keyword argument to solvers. +* Improved doctests +* Added latex equations to ReadTheDocs documentation +* Added examples to ReadTheDocs documentation +* Added linkcode resolve to documentation + + v1.0.5 ====== diff --git a/pygasflow/_version.py b/pygasflow/_version.py index 68cdeee..382021f 100644 --- a/pygasflow/_version.py +++ b/pygasflow/_version.py @@ -1 +1 @@ -__version__ = "1.0.5" +__version__ = "1.0.6" diff --git a/setup.py b/setup.py index 8e66c55..abcd255 100644 --- a/setup.py +++ b/setup.py @@ -1,21 +1,23 @@ from setuptools import setup import os +def readme(): + with open('README.md') as f: + return f.read() + here = os.path.dirname(os.path.abspath(__file__)) version_ns = {} with open(os.path.join(here, 'pygasflow', '_version.py')) as f: exec (f.read(), {}, version_ns) -def readme(): - with open('README.md') as f: - return f.read() - setup( name = 'pygasflow', version = version_ns["__version__"], description = 'Ideal Gasdynamics utilities for Python 3.6+', long_description = readme(), + long_description_content_type="text/markdown", classifiers=[ + 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Programming Language :: Python :: 3.9', "Topic :: Scientific/Engineering",