diff --git a/doc/conf.py b/doc/conf.py index 6720e761..da07491d 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -50,9 +50,9 @@ # built documents. # # The short X.Y version. -version = '0.1' +version = '0.2' # The full version, including alpha/beta/rc tags. -release = '0.1.0' +release = '0.2.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/matplotlib2tikz.py b/matplotlib2tikz.py index 8c5bc66d..7c82a3e1 100644 --- a/matplotlib2tikz.py +++ b/matplotlib2tikz.py @@ -16,10 +16,10 @@ __email__ = 'nico.schloemer@gmail.com' __copyright__ = 'Copyright (c) 2010-2015, %s <%s>' % (__author__, __email__) __credits__ = [] -__license__ = 'GNU Lesser General Public License (LGPL), Version 3' -__version__ = '0.1.0' +__license__ = 'MIT License' +__version__ = '0.2.0' __maintainer__ = 'Nico Schlömer' -__status__ = 'Development' +__status__ = 'Production' def save(filepath, diff --git a/setup.py b/setup.py index 5a26e5a9..b7541aaf 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import os import pypandoc -from matplotlib2tikz import __version__ +from matplotlib2tikz import __version__, __license__ longdesc = pypandoc.convert( os.path.join(os.path.dirname(os.path.realpath(__file__)), 'README.md'), @@ -22,7 +22,7 @@ requires=['matplotlib (>=1.4.0)', 'numpy'], description='convert matplotlib figures into TikZ/PGFPlots', long_description=longdesc, - license='MIT License', + license=__license__, classifiers=[ 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: MIT License',