Skip to content

Commit ace4bff

Browse files
committed
Set version to 1.3.0
1 parent 52a1009 commit ace4bff

4 files changed

Lines changed: 21 additions & 7 deletions

File tree

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ See the full documentation on
7878

7979
Copyright
8080
---------
81-
Copyright (C) 2016-2018 Philipp S. Sommer
81+
Copyright (C) 2016-2020 Philipp S. Sommer
8282

8383
This program is free software; you can redistribute it and/or modify
8484
it under the terms of the GNU General Public License as published by

psy_reg/__init__.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,12 @@
66
"""
77
from psy_reg.version import __version__
88

9-
__author__ = "Philipp Sommer (philipp.sommer@unil.ch)"
9+
__author__ = "Philipp S. Sommer"
10+
__copyright__ = "Copyright 2016 - 2020, Philipp S. Sommer"
11+
__credits__ = ["Philipp S. Sommer"]
12+
__license__ = "GPL-2.0-only"
13+
14+
__maintainer__ = "Philipp S. Sommer"
15+
__email__ = "philipp.sommer@hzg.de"
16+
17+
__status__ = "Production"

psy_reg/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# version of psy-reg
22

3-
__version__ = "1.2.1.dev0"
3+
__version__ = "1.3.0"

setup.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,20 +44,26 @@ def run_tests(self):
4444
'Programming Language :: Python :: 2',
4545
'Programming Language :: Python :: 2.7',
4646
'Programming Language :: Python :: 3',
47-
'Programming Language :: Python :: 3.4',
48-
'Programming Language :: Python :: 3.5',
47+
'Programming Language :: Python :: 3 :: Only',
4948
'Programming Language :: Python :: 3.6',
49+
'Programming Language :: Python :: 3.7',
50+
'Programming Language :: Python :: 3.8',
5051
'Operating System :: OS Independent',
5152
],
53+
project_urls={
54+
'Documentation': 'https://psyplot.readthedocs.io/projects/psy-reg',
55+
'Source': 'https://github.com/psyplot/psy-reg',
56+
'Tracker': 'https://github.com/psyplot/psy-reg/issues',
57+
},
5258
keywords='visualization netcdf raster cartopy earth-sciences psyplot',
5359
url='https://github.com/psyplot/psy-reg',
5460
author='Philipp Sommer',
55-
author_email='philipp.sommer@unil.ch',
61+
author_email='philipp.sommer@hzg.de',
5662
license="GPLv2",
5763
packages=find_packages(exclude=['docs', 'tests*', 'examples']),
5864
install_requires=[
5965
'psyplot',
60-
'psy-simple>1.0.1',
66+
'psy-simple>=1.3.0',
6167
'statsmodels',
6268
'scipy',
6369
],

0 commit comments

Comments
 (0)