Skip to content

Commit 072bfea

Browse files
committed
better __about__
1 parent 929c407 commit 072bfea

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

matplotlib2tikz/__about__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# -*- coding: utf-8 -*-
22
#
3-
__author__ = 'Nico Schlömer'
3+
__author__ = u'Nico Schlömer'
44
__email__ = '[email protected]'
55
__copyright__ = 'Copyright (c) 2010-2017, %s <%s>' % (__author__, __email__)
66
__credits__ = []
7-
__license__ = 'MIT License'
7+
__license__ = 'License :: OSI Approved :: MIT License'
88
__version__ = '0.6.3'
9-
__maintainer__ = 'Nico Schlömer'
10-
__status__ = 'Production'
9+
__maintainer__ = u'Nico Schlömer'
10+
__status__ = 'Development Status :: 5 - Production/Stable'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ def read(fname):
4040
long_description=read('README.rst'),
4141
license=about['__license__'],
4242
classifiers=[
43-
'Development Status :: 5 - Production/Stable',
44-
'License :: OSI Approved :: MIT License',
43+
about['__status__'],
44+
about['__license__'],
4545
'Operating System :: OS Independent',
4646
'Programming Language :: Python',
4747
'Programming Language :: Python :: 2',

0 commit comments

Comments
 (0)