summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo Hemsted <leo.hemsted@digital.cabinet-office.gov.uk>2017-11-30 17:59:31 +0000
committerLeo Hemsted <leo.hemsted@digital.cabinet-office.gov.uk>2017-12-20 13:18:12 +0000
commit5fc7b506b3e6c36b44534f73c18ffe168d73dede (patch)
treeab496ddb2af2644c42924ae28c525cf142bbb2c0
parent655dd138b9592219a0937b83ed76af69d42b1c37 (diff)
downloadsmartypants-git-5fc7b506b3e6c36b44534f73c18ffe168d73dede.tar.gz
add copyright info
-rw-r--r--.gitignore8
-rw-r--r--COPYING7
-rwxr-xr-xsetup.py2
-rwxr-xr-xsmartypants2
-rwxr-xr-xsmartypants.py7
-rw-r--r--tests/test.py2
-rw-r--r--tests/test_cli.py2
-rw-r--r--tests/test_deprecated.py2
-rw-r--r--tests/test_setup.py2
9 files changed, 22 insertions, 12 deletions
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