From cc1e7bc7e1eefdfe6503b0dc914804c24b479199 Mon Sep 17 00:00:00 2001 From: Kolja Glogowski Date: Sun, 17 Feb 2019 18:17:09 +0100 Subject: [PATCH] Updated URLs, version numbers, authors and dates --- AUTHORS.txt | 3 +++ LICENSE.txt | 2 +- README.rst | 6 +++--- doc/index.rst | 2 +- doc/intro.rst | 2 +- doc/tutorial.rst | 6 +++--- drms/__init__.py | 4 ++-- setup.py | 3 ++- 8 files changed, 16 insertions(+), 12 deletions(-) diff --git a/AUTHORS.txt b/AUTHORS.txt index 0f26593..3a7d231 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -8,3 +8,6 @@ Contributors: - Monica Bobra - Arthur Amezcua - David Perez-Suarez +- Nitin Choudhary +- Stuart Mumford +- Nabil Freij diff --git a/LICENSE.txt b/LICENSE.txt index f4355c0..2d0a549 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2014-2016 Kolja Glogowski and others. +Copyright (c) 2014-2019 Kolja Glogowski and others. See AUTHORS.txt for a list of contributors. Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/README.rst b/README.rst index 5115773..c0c52b2 100644 --- a/README.rst +++ b/README.rst @@ -3,8 +3,8 @@ drms ==== `Docs `_ | -`Tutorial `_ | -`Github `_ | +`Tutorial `_ | +`Github `_ | `PyPI `_ The ``drms`` module provides an easy-to-use interface for accessing HMI, @@ -22,7 +22,7 @@ The ``drms`` module supports Python 2.7 and Python 3.4 or newer. It requires the following Python packages: - NumPy, version 1.9.0 or newer -- Pandas, version 0.14.1 or newer +- Pandas, version 0.15.0 or newer - Six, version 1.8.0 or newer The module might also work with earlier versions, but it has not been diff --git a/doc/index.rst b/doc/index.rst index cfb137b..41f2113 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -4,7 +4,7 @@ drms documentation :Release: |version| :Date: |today| -:Github: https://github.com/kbg/drms +:Github: https://github.com/sunpy/drms :PyPI: https://pypi.python.org/pypi/drms Python module for accessing HMI, AIA and MDI data. diff --git a/doc/intro.rst b/doc/intro.rst index 7195e5f..0492656 100644 --- a/doc/intro.rst +++ b/doc/intro.rst @@ -32,7 +32,7 @@ The ``drms`` module supports Python 2.7 and Python 3.4 or newer. It requires the following Python packages: - NumPy, version 1.9.0 or newer -- Pandas, version 0.14.1 or newer +- Pandas, version 0.15.0 or newer - Six, version 1.8.0 or newer The module might also work with earlier versions, but it has not been diff --git a/doc/tutorial.rst b/doc/tutorial.rst index ea78927..7dce267 100644 --- a/doc/tutorial.rst +++ b/doc/tutorial.rst @@ -9,7 +9,7 @@ This tutorial gives an introduction on how to use the ``drms`` Python module. More detailed information on the different classes and functions can be found in the :ref:`API Reference Manual `. In addition to this tutorial, many example scripts are available in the -`source code package `_ +`source code package `_ of the ``drms`` module. .. tip:: @@ -414,10 +414,10 @@ Example scripts --------------- There are many example scripts available in the -`examples directory `_ +`examples directory `_ of the ``drms`` Python package source code. An archive of the latest source code release can be downloaded from the -`drms relase page `_ +`drms relase page `_ on Github. .. For more information, use ``help(drms)`` inside the Python interpreter, diff --git a/drms/__init__.py b/drms/__init__.py index 6d029d5..be93dd6 100644 --- a/drms/__init__.py +++ b/drms/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2014-2016 Kolja Glogowski and others. +# Copyright (c) 2014-2019 Kolja Glogowski and others. # See AUTHORS.txt for a list of contributors. # # Permission is hereby granted, free of charge, to any person @@ -25,7 +25,7 @@ """ Access HMI, AIA and MDI data with Python -The latest release is avaiable at https://github.com/kbg/drms . +The latest release is avaiable at https://github.com/sunpy/drms . """ from __future__ import absolute_import, division, print_function diff --git a/setup.py b/setup.py index 7f7e6c0..1c58184 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ LONG_DESCRIPTION = open('README.rst').read() AUTHOR = 'Kolja Glogowski' AUTHOR_EMAIL = '"Kolja Glogowski" ' -URL = 'https://github.com/kbg/drms' +URL = 'https://github.com/sunpy/drms' LICENSE = 'MIT' setup(name=NAME, @@ -36,5 +36,6 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Topic :: Scientific/Engineering :: Astronomy'], platforms='any')