From d0633dc1143c5147d61cfe7b8efdd0e93cd94cf3 Mon Sep 17 00:00:00 2001 From: Tom Elliott Date: Wed, 25 Sep 2024 14:47:13 -0400 Subject: [PATCH] update roadmap to indicate work in this branch on issue #5; stub module for development --- README.md | 2 +- src/lpf_name.py | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 src/lpf_name.py diff --git a/README.md b/README.md index 6c03d36..59c646b 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ A python package for working with data in the [Linked Places Format (LPF)](https - [ ] LPFWhen - [ ] LPFTimeSpan - [ ] LPFTimePeriod - - [ ] LPFName + - [ ] LPFName (issue #5: now in work in branch `issue5_lpfname`) - [ ] LPFType - [ ] LPFGeometry - [ ] LPFLink diff --git a/src/lpf_name.py b/src/lpf_name.py new file mode 100644 index 0000000..f92bd1e --- /dev/null +++ b/src/lpf_name.py @@ -0,0 +1,14 @@ +# +# This file is part of lpf2pleiades +# by Tom Elliott for the Institute for the Study of the Ancient World +# (c) Copyright 2024 by New York University +# Licensed under the AGPL-3.0; see LICENSE.txt file. +# + +""" +Python 3 package template (changeme) +""" + +import logging + +logger = logging.getLogger(__name__)