Skip to content

Commit

Permalink
Updated URLs, version numbers, authors and dates
Browse files Browse the repository at this point in the history
  • Loading branch information
kbg committed Feb 17, 2019
1 parent 9ec5cab commit cc1e7bc
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 12 deletions.
3 changes: 3 additions & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ Contributors:
- Monica Bobra
- Arthur Amezcua
- David Perez-Suarez
- Nitin Choudhary
- Stuart Mumford
- Nabil Freij
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ drms
====

`Docs <http://drms.readthedocs.io/>`_ |
`Tutorial <http://drms.readthedocs.io/en/stable/tutorial.html>`_ |
`Github <https://github.com/kbg/drms>`_ |
`Tutorial <https://drms.readthedocs.io/en/latest/tutorial.html>`_ |
`Github <https://github.com/sunpy/drms>`_ |
`PyPI <https://pypi.python.org/pypi/drms>`_

The ``drms`` module provides an easy-to-use interface for accessing HMI,
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion doc/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions doc/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <api>`. In addition to
this tutorial, many example scripts are available in the
`source code package <https://github.com/kbg/drms/releases/latest>`_
`source code package <https://github.com/sunpy/drms/releases/latest>`_
of the ``drms`` module.

.. tip::
Expand Down Expand Up @@ -414,10 +414,10 @@ Example scripts
---------------

There are many example scripts available in the
`examples directory <https://github.com/kbg/drms/tree/master/examples>`_
`examples directory <https://github.com/sunpy/drms/tree/master/examples>`_
of the ``drms`` Python package source code. An archive of the latest
source code release can be downloaded from the
`drms relase page <https://github.com/kbg/drms/releases/latest>`_
`drms relase page <https://github.com/sunpy/drms/releases/latest>`_
on Github.

.. For more information, use ``help(drms)`` inside the Python interpreter,
4 changes: 2 additions & 2 deletions drms/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
LONG_DESCRIPTION = open('README.rst').read()
AUTHOR = 'Kolja Glogowski'
AUTHOR_EMAIL = '"Kolja Glogowski" <kolja@pixie.de>'
URL = 'https://github.com/kbg/drms'
URL = 'https://github.com/sunpy/drms'
LICENSE = 'MIT'

setup(name=NAME,
Expand Down Expand Up @@ -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')

0 comments on commit cc1e7bc

Please sign in to comment.