aboutsummaryrefslogtreecommitdiff
path: root/dateutil/zoneinfo
diff options
context:
space:
mode:
authorTomi Pieviläinen <tomi.pievilainen+launchpad@iki.fi>2012-03-03 11:43:08 +0200
committerTomi Pieviläinen <tomi.pievilainen+launchpad@iki.fi>2012-03-03 11:43:08 +0200
commit40996e01996096f252ef9d7754edf054e691900d (patch)
tree2bac9b8916f60f90041184b78b35bd6e295aaf38 /dateutil/zoneinfo
parent8a7cfe03f12938b2a3b12fa549ef03c043c01b98 (diff)
downloaddateutil-40996e01996096f252ef9d7754edf054e691900d.tar.gz
Metadata fixes
Fix remaining references to PSF license, change maintainer info. Removed most occurances of __author__, since it felt redundant with the copyright notice (credit) and package metadata (developer contact). Also fixed references to Python 2.3 (it's not even tested anymore) and changed calls from python3 to just python (let the system decide).
Diffstat (limited to 'dateutil/zoneinfo')
-rw-r--r--dateutil/zoneinfo/__init__.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/dateutil/zoneinfo/__init__.py b/dateutil/zoneinfo/__init__.py
index e7709bb..0ffb294 100644
--- a/dateutil/zoneinfo/__init__.py
+++ b/dateutil/zoneinfo/__init__.py
@@ -1,15 +1,16 @@
+# -*- coding: utf-8 -*-
"""
Copyright (c) 2003-2005 Gustavo Niemeyer <gustavo@niemeyer.net>
-This module offers extensions to the standard python 2.3+
+This module offers extensions to the standard Python
datetime module.
"""
from dateutil.tz import tzfile
from tarfile import TarFile
import os
-__author__ = "Gustavo Niemeyer <gustavo@niemeyer.net>"
-__license__ = "PSF License"
+__author__ = "Tomi Pieviläinen <tomi.pievilainen@iki.fi>"
+__license__ = "Simplified BSD"
__all__ = ["setcachesize", "gettz", "rebuild"]