From f56637058c7e47d6c20d0cf345e42dde8b46cf73 Mon Sep 17 00:00:00 2001 From: Leonardo Uieda Date: Fri, 25 Jan 2019 09:33:28 +0000 Subject: [PATCH] Assign authorship to "The PyGMT Developers" Replaces my name with "The PyGMT Developers" in authorship claims and copyright notices. Include a definition of what that term means in the AUTHORS.md file and include a reference to it in the README and doc page. Left my email on the `setup.py` because we don't have a project email yet. --- AUTHORS.md | 3 ++- LICENSE.txt | 4 ++-- README.rst | 33 ++++++++++++++++++++++++--------- doc/conf.py | 2 +- setup.py | 2 +- 5 files changed, 30 insertions(+), 14 deletions(-) diff --git a/AUTHORS.md b/AUTHORS.md index 9c8a25642ed..db1e7073a35 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -5,7 +5,8 @@ during [an NSF funded postdoc](http://www.leouieda.com/blog/hawaii-gmt-postdoc.h with [Paul Wessel](http://www.soest.hawaii.edu/wessel) at the University of Hawaii at Manoa. -The following people have contributed code to the project (alphabetical by last name): +The following people have contributed code to the project (alphabetical by last name) +and are considered the "PyGMT Developers": * [Dongdong Tian](https://seisman.info/) * [Leonardo Uieda](http://www.leouieda.com/) diff --git a/LICENSE.txt b/LICENSE.txt index 6ad63d8d298..9db1f1972fd 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2017-2019 Leonardo Uieda +Copyright (c) 2017-2019 The PyGMT Developers All rights reserved. Redistribution and use in source and binary forms, with or without modification, @@ -9,7 +9,7 @@ are permitted provided that the following conditions are met: * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -* Neither the name of Leonardo Uieda nor the names of any contributors +* Neither the name of the PyGMT Developers nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission. diff --git a/README.rst b/README.rst index 4ac3da88a3d..efc70c6627b 100644 --- a/README.rst +++ b/README.rst @@ -123,6 +123,30 @@ mistakes. That's how we all improve and we are happy to help others learn. `MetPy project `__. +Who we are +---------- + +PyGMT is a community developed project. See the +`AUTHORS.md `__ +file on Github for a list of the people involved and a definition of the term "PyGMT +Developers". + + +License +------- + +PyGMT is free software: you can redistribute it and/or modify it under the terms of +the **BSD 3-clause License**. A copy of this license is provided in +`LICENSE.txt `__. + + +Support +------- + +The development of PyGMT was funded by +`NSF grant OCE-1558403 `__. + + Related projects ---------------- @@ -135,12 +159,3 @@ Other Python wrappers for GMT: * `gmtpy `__ by `Sebastian Heimann `__ * `pygmt `__ by `Ian Rose `__ * `PyGMT `__ by `Magnus Hagdorn `__ - - -License -------- - -PyGMT is free software: you can redistribute it and/or modify it under the terms of -the **BSD 3-clause License**. A copy of this license is provided in -`LICENSE.txt `__. -. diff --git a/doc/conf.py b/doc/conf.py index d954495b3f4..21ec21356d3 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -77,7 +77,7 @@ # General information about the project year = datetime.date.today().year project = "PyGMT" -copyright = "2017-{}, Leonardo Uieda and Paul Wessel".format(year) +copyright = "2017-{}, The PyGMT Developers.".format(year) if len(__version__.split("+")) > 1 or __version__ == "unknown": version = "dev" else: diff --git a/setup.py b/setup.py index 4c0493220ad..a6bed385c64 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ NAME = "pygmt" FULLNAME = "PyGMT" -AUTHOR = "Leonardo Uieda" +AUTHOR = "The PyGMT Developers" AUTHOR_EMAIL = "leouieda@gmail.com" MAINTAINER = AUTHOR MAINTAINER_EMAIL = AUTHOR_EMAIL