Skip to content

Commit 7d7b6b6

Browse files
committed
Release v0.1.0 (#28)
1 parent 28746e4 commit 7d7b6b6

File tree

4 files changed

+17
-1
lines changed

4 files changed

+17
-1
lines changed

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# allow installing from git archives
2+
.git_archival.txt export-subst

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
## v0.1.0 - 05.08.2022
4+
5+
- First version released based on the code developped for my IPCC AR6 analyses and including some additions (e.g. `priority_filter`, prefering `kwargs` over keys passed via a dictionary, more complete tests).

filefinder/__init__.py

+9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
# flake8: noqa
22

3+
import pkg_resources
4+
35
from . import _filefinder, cmip, utils
46
from ._filefinder import FileContainer, FileFinder
7+
8+
try:
9+
__version__ = pkg_resources.get_distribution("regionmask").version
10+
except Exception:
11+
# Local copy or not installed with setuptools.
12+
# Disable minimum version checks on downstream libraries.
13+
__version__ = "999"

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author_email = [email protected]
55
license = MIT
66
description = find and parse file and folder names
77
long_description_content_type=text/markdown
8-
long_description = file: README.rst
8+
long_description = file: README.md
99
url = https://github.com/mathause/filefinder
1010
classifiers =
1111
Development Status :: 4 - Beta

0 commit comments

Comments
 (0)