From 43ab649c8f46aba7b8ff136753e0ea5c23e3da21 Mon Sep 17 00:00:00 2001 From: "Adam J. Stewart" Date: Mon, 20 Sep 2021 17:25:35 -0500 Subject: [PATCH] Use __author__ field --- docs/conf.py | 2 +- torchgeo/__init__.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 5a93ad26c..c3d0606a6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ import torchgeo # noqa: E402 project = "torchgeo" copyright = "2021, Microsoft Corporation" -author = "Adam J. Stewart" +author = torchgeo.__author__ version = ".".join(torchgeo.__version__.split(".")[:2]) release = torchgeo.__version__ diff --git a/torchgeo/__init__.py b/torchgeo/__init__.py index be11fc117..dd5c053b5 100644 --- a/torchgeo/__init__.py +++ b/torchgeo/__init__.py @@ -10,4 +10,5 @@ The :mod:`torchgeo` package consists of popular datasets, model architectures, a common image transformations for geospatial data. """ -__version__ = "0.1.0-dev" +__author__ = "Adam J. Stewart" +__version__ = "0.1.0.dev0"