Skip to content

Commit b0cb873

Browse files
authored
Ci (#23)
* conform CI and packaging requirements with GlacioHack/geoutils * handle dimension renaming more gracefully * bug fix: errors=raise and raise file not found error * add basic test suite * add netcdf4 dep * add dask, xarray deps * change over to using setup.cfg
1 parent a2809d8 commit b0cb873

File tree

2 files changed

+23
-11
lines changed

2 files changed

+23
-11
lines changed

setup.cfg

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[metadata]
2+
name = marutils
3+
version = 1.0.0
4+
author = GlacioHack / Andrew Tedstone (@atedstone)
5+
author_email = [email protected]
6+
description = Utilities and tools for working with MAR regional climate model outputs through xarray
7+
long_description = file: README.md
8+
long_description_content_type = text/markdown
9+
url = https://github.com/GlacioHack/marutils
10+
project_urls =
11+
Bug Tracker = https://github.com/GlacioHack/marutils/issues
12+
classifiers =
13+
Programming Language :: Python :: 3
14+
License :: OSI Approved :: BSD-3
15+
Operating System :: OS Independent
16+
17+
[options]
18+
packages = find:
19+
python_requires = >=3.6

setup.py

+4-11
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,10 @@
44
FULLVERSION = '1.0.0'
55
VERSION = FULLVERSION
66

7-
setup(name='marutils',
8-
version=FULLVERSION,
9-
description='Utilities and tools for working with MAR regional climate model outputs through xarray',
10-
url='https://www.github.com/GlacioHack/marutils/',
11-
author='Andrew Tedstone',
12-
license='BSD-3',
13-
packages=['marutils'],
14-
install_requires=['rioxarray', 'xarray', 'pandas', 'rasterio'],
15-
#extras_require=[],
16-
scripts=[],
17-
zip_safe=False)
7+
8+
setup()
9+
10+
1811

1912
write_version = True
2013

0 commit comments

Comments
 (0)