From db3bce05e04d294ec906cb38ac099a42fb02d6ad Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Fri, 16 Dec 2016 09:55:47 +0000 Subject: [PATCH] Add missing copyright/license notices For clarity, add copyright and license notice headers at the tops of files which were missing them (general packaging configuration and metadata for the most part, but doesn't hurt to be thorough for the sake of future provenance inquiries). --- .gitignore | 4 ++++ requirements.txt | 4 ++++ setup.cfg | 4 ++++ setup.py | 4 ++++ test-requirements.txt | 4 ++++ tox.ini | 4 ++++ 6 files changed, 24 insertions(+) diff --git a/.gitignore b/.gitignore index e3fe8a1..e833e8d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +# Copyright (c) 2014-2016 Jeremy Stanley . Permission +# to use, copy, modify, and distribute this software is granted under +# terms provided in the LICENSE file distributed with this software. + *.egg-info/ .eggs/ .tox/ diff --git a/requirements.txt b/requirements.txt index 90396eb..f03bf88 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,6 @@ +# Copyright (c) 2014-2016 Jeremy Stanley . Permission +# to use, copy, modify, and distribute this software is granted under +# terms provided in the LICENSE file distributed with this software. + passlib pyyaml diff --git a/setup.cfg b/setup.cfg index 35cd6bc..d87ca9b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,3 +1,7 @@ +# Copyright (c) 2016 Jeremy Stanley . Permission +# to use, copy, modify, and distribute this software is granted under +# terms provided in the LICENSE file distributed with this software. + [metadata] name = mudpy summary = The mudpy MUD server engine. diff --git a/setup.py b/setup.py index 473cf21..7e4f9f6 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,7 @@ +# Copyright (c) 2016 Jeremy Stanley . Permission +# to use, copy, modify, and distribute this software is granted under +# terms provided in the LICENSE file distributed with this software. + import setuptools setuptools.setup(setup_requires=['pbr>=2.0'], pbr=True) diff --git a/test-requirements.txt b/test-requirements.txt index 3930480..380db49 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1 +1,5 @@ +# Copyright (c) 2016 Jeremy Stanley . Permission +# to use, copy, modify, and distribute this software is granted under +# terms provided in the LICENSE file distributed with this software. + flake8 diff --git a/tox.ini b/tox.ini index 041861a..90fa750 100644 --- a/tox.ini +++ b/tox.ini @@ -1,3 +1,7 @@ +# Copyright (c) 2016 Jeremy Stanley . Permission +# to use, copy, modify, and distribute this software is granted under +# terms provided in the LICENSE file distributed with this software. + [tox] minversion = 2.0 envlist = flake8 -- 2.11.0