From 9887638de195d243a5276b5fe3e0cf79bad21ed7 Mon Sep 17 00:00:00 2001 From: Siddharth Ravikumar Date: Tue, 22 Dec 2015 18:44:04 -0500 Subject: authors -> contributors. --- AUTHORS | 5 ----- CONTRIBUTORS.rst | 5 +++++ ChangeLog | 23 +++++++++++++++++++++++ Makefile | 2 +- combox/_version.py | 2 +- combox/cbox.py | 2 +- combox/config.py | 2 +- combox/crypto.py | 2 +- combox/events.py | 2 +- combox/file.py | 2 +- combox/gui.py | 2 +- combox/log.py | 2 +- combox/silo.py | 2 +- setup.py | 4 +++- tests/_version_test.py | 2 +- tests/config_test.py | 2 +- tests/crypto_test.py | 2 +- tests/events_test.py | 2 +- tests/file_test.py | 2 +- tests/silo_test.py | 2 +- tests/utils.py | 2 +- 21 files changed, 48 insertions(+), 23 deletions(-) delete mode 100644 AUTHORS create mode 100644 CONTRIBUTORS.rst diff --git a/AUTHORS b/AUTHORS deleted file mode 100644 index 615f33a..0000000 --- a/AUTHORS +++ /dev/null @@ -1,5 +0,0 @@ - - -# AUTHORS - -* Siddharth Ravikumar (`gpg id: 0x00B252AF`) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst new file mode 100644 index 0000000..22b0ecf --- /dev/null +++ b/CONTRIBUTORS.rst @@ -0,0 +1,5 @@ +============ +contributors +============ + +- Siddharth Ravikumar (`gpg id: 0x00B252AF`) diff --git a/ChangeLog b/ChangeLog index 526319e..951980f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,26 @@ +2015-12-22 Siddharth Ravikumar + + * AUTHORS: Deleted + * CONTRIBUTORS.rst: Added + * Makefile: updated copyright header (authors -> contributors) + * combox/_version.py: updated copyright header (authors -> contributors) + * combox/cbox.py: updated copyright header (authors -> contributors) + * combox/config.py: updated copyright header (authors -> contributors) + * combox/crypto.py: updated copyright header (authors -> contributors) + * combox/events.py: updated copyright header (authors -> contributors) + * combox/file.py: updated copyright header (authors -> contributors) + * combox/gui.py: updated copyright header (authors -> contributors) + * combox/log.py: updated copyright header (authors -> contributors) + * combox/silo.py: updated copyright header (authors -> contributors) + * setup.py: updated copyright header (authors -> contributors) + * tests/_version_test.py: updated copyright header (authors -> contributors) + * tests/config_test.py: updated copyright header (authors -> contributors) + * tests/crypto_test.py: updated copyright header (authors -> contributors) + * tests/events_test.py: updated copyright header (authors -> contributors) + * tests/file_test.py: updated copyright header (authors -> contributors) + * tests/silo_test.py: updated copyright header (authors -> contributors) + * tests/utils.py: updated copyright header (authors -> contributors) + 2015-12-22 Siddharth Ravikumar * Makefile: added new targets `clean-dist` and `clean-pyc`. diff --git a/Makefile b/Makefile index d0ce0c0..ff84d1f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # diff --git a/combox/_version.py b/combox/_version.py index a5e4129..365465e 100644 --- a/combox/_version.py +++ b/combox/_version.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # diff --git a/combox/cbox.py b/combox/cbox.py index 0ffdadb..e8d08a3 100644 --- a/combox/cbox.py +++ b/combox/cbox.py @@ -2,7 +2,7 @@ # #!/usr/bin/env python # -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # diff --git a/combox/config.py b/combox/config.py index 8bc7c51..fae5430 100644 --- a/combox/config.py +++ b/combox/config.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # diff --git a/combox/crypto.py b/combox/crypto.py index 282ea14..b35a700 100644 --- a/combox/crypto.py +++ b/combox/crypto.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # diff --git a/combox/events.py b/combox/events.py index 25867bc..a96b809 100644 --- a/combox/events.py +++ b/combox/events.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # diff --git a/combox/file.py b/combox/file.py index b3792a4..25e9b79 100644 --- a/combox/file.py +++ b/combox/file.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # diff --git a/combox/gui.py b/combox/gui.py index 6c2a92a..93a712c 100644 --- a/combox/gui.py +++ b/combox/gui.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # diff --git a/combox/log.py b/combox/log.py index 303a9ca..c9a3214 100644 --- a/combox/log.py +++ b/combox/log.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # diff --git a/combox/silo.py b/combox/silo.py index 3c6f835..e52b815 100644 --- a/combox/silo.py +++ b/combox/silo.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # diff --git a/setup.py b/setup.py index d4387f2..96581ff 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,6 @@ -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# -*- coding: utf-8 -*- +# +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # diff --git a/tests/_version_test.py b/tests/_version_test.py index 7e1ccc1..12c4d2a 100644 --- a/tests/_version_test.py +++ b/tests/_version_test.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # diff --git a/tests/config_test.py b/tests/config_test.py index 5ce6aca..a9d4ba6 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # diff --git a/tests/crypto_test.py b/tests/crypto_test.py index ca1c15a..82edf9e 100644 --- a/tests/crypto_test.py +++ b/tests/crypto_test.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # diff --git a/tests/events_test.py b/tests/events_test.py index b62b82d..c797e80 100644 --- a/tests/events_test.py +++ b/tests/events_test.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # diff --git a/tests/file_test.py b/tests/file_test.py index 7fbd6b7..f431a78 100644 --- a/tests/file_test.py +++ b/tests/file_test.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # diff --git a/tests/silo_test.py b/tests/silo_test.py index 8162982..9ba6f89 100644 --- a/tests/silo_test.py +++ b/tests/silo_test.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # diff --git a/tests/utils.py b/tests/utils.py index 73096f1..d836cf6 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2015 Combox author(s). See AUTHORS. +# Copyright (C) 2015 Combox contributor(s). See CONTRIBUTORS.rst. # # This file is part of Combox. # -- cgit v1.2.3