From 5fc7b506b3e6c36b44534f73c18ffe168d73dede Mon Sep 17 00:00:00 2001 From: Leo Hemsted Date: Thu, 30 Nov 2017 17:59:31 +0000 Subject: add copyright info --- .gitignore | 8 ++++++++ COPYING | 7 ++++--- setup.py | 2 +- smartypants | 2 +- smartypants.py | 7 ++++--- tests/test.py | 2 +- tests/test_cli.py | 2 +- tests/test_deprecated.py | 2 +- tests/test_setup.py | 2 +- 9 files changed, 22 insertions(+), 12 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..00fc953 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +syntax: glob +build +docs/_build +dist +MANIFEST +PKG-INFO +smartypants_command.py +*.pyc diff --git a/COPYING b/COPYING index 45e78a5..328ea82 100644 --- a/COPYING +++ b/COPYING @@ -23,7 +23,7 @@ SmartyPants the documentation and/or other materials provided with the distribution. - * Neither the name "SmartyPants" nor the names of its contributors + * Neither the name "SmartyPants" nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. @@ -46,8 +46,9 @@ smartypants :: smartypants is a derivative work of SmartyPants. - - Copyright (c) 2013, 2014 Yu-Jie Lin + + Copyright (c) 2017, Leo Hemsted + Copyright (c) 2013, 2014, 2015, 2016 Yu-Jie Lin Copyright (c) 2004, 2005, 2007, 2013 Chad Miller Redistribution and use in source and binary forms, with or without diff --git a/setup.py b/setup.py index ff1ea76..6418be0 100755 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (C) 2013, 2014 by Yu-Jie Lin +# Copyright (C) 2017 by Leo Hemsted # For detail license information, See COPYING from __future__ import print_function diff --git a/smartypants b/smartypants index 189adf5..b5af1c0 100755 --- a/smartypants +++ b/smartypants @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2013, 2014 Yu-Jie Lin +# Copyright (c) 2017 Leo Hemsted # Licensed under the BSD License, for detailed license information, see COPYING """ diff --git a/smartypants.py b/smartypants.py index a70575b..55506ac 100755 --- a/smartypants.py +++ b/smartypants.py @@ -1,5 +1,6 @@ #!/usr/bin/python # -*- coding: utf-8 -*- +# Copyright (c) 2017 Leo Hemsted # Copyright (c) 2013, 2014, 2016 Yu-Jie Lin # Copyright (c) 2004, 2005, 2007, 2013 Chad Miller # Copyright (c) 2003 John Gruber @@ -12,11 +13,11 @@ smartypants module :func:`smartypants` is the core of smartypants module. """ -__author__ = 'Yu-Jie Lin' -__author_email__ = 'livibetter@gmail.com' +__author__ = 'Leo Hemsted' +__author_email__ = 'leohemsted@gmail.com' __version__ = '2.0.0' __license__ = 'BSD License' -__url__ = 'https://bitbucket.org/livibetter/smartypants.py' +__url__ = 'https://github.com/leohemsted/smartypants.py' __description__ = 'Python with the SmartyPants' import re diff --git a/tests/test.py b/tests/test.py index a16178b..840bfa0 100644 --- a/tests/test.py +++ b/tests/test.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (c) 2013, 2016 Yu-Jie Lin +# Copyright (c) 2017 Leo Hemsted # Licensed under the BSD License, for detailed license information, see COPYING import doctest diff --git a/tests/test_cli.py b/tests/test_cli.py index 263f319..e85545a 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013 Yu-Jie Lin +# Copyright (c) 2017 Leo Hemsted # Licensed under the BSD License, for detailed license information, see COPYING from __future__ import unicode_literals diff --git a/tests/test_deprecated.py b/tests/test_deprecated.py index 8d4fc7e..0f554e9 100644 --- a/tests/test_deprecated.py +++ b/tests/test_deprecated.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2013, 2016 Yu-Jie Lin +# Copyright (c) 2017 Leo Hemsted # Licensed under the BSD License, for detailed license information, see COPYING import unittest diff --git a/tests/test_setup.py b/tests/test_setup.py index e5eb654..20e4678 100644 --- a/tests/test_setup.py +++ b/tests/test_setup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013 Yu-Jie Lin +# Copyright (c) 2017 Leo Hemsted # Licensed under the BSD License, for detailed license information, see COPYING import unittest -- cgit v1.2.1