-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (69 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
76 lines (69 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = [
"setuptools",
"setuptools_scm>=8",
"wheel",
"numpy<1.23",
"cython",
]
[project]
name = "smrf"
description = "Forcing input framework for iSnobal"
dynamic = [
"version"
]
requires-python = ">=3.9"
readme = "README.md"
keywords = [
'iSnobal',
'Snow',
'Modeling'
]
classifiers = [
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3.9"
]
dependencies = [
"coloredlogs",
"cfgrib",
"inicheck<0.10.0",
"netCDF4",
"numpy<1.23",
"pandas<1.4",
"pykrige>=1.5.0",
"pytz",
"regex<2021",
"scipy<1.12",
"spatialnc>=0.2.12",
"topocalc @ git+https://github.com/iSnobal/topocalc.git@20260309",
"utm==0.5",
"xarray<2023",
]
[project.scripts]
run_smrf = 'smrf.cli.run_smrf:run'
[project.optional-dependencies]
dev = [
"mock",
]
docs = [
'Sphinx>=3.0,<=4.0',
'pydata-sphinx-theme',
'sphinxcontrib-bibtex>=1.0',
'sphinxcontrib-websupport>=1.0.1',
]
all = ["smrf-dev[dev,docs]"]
[tool.setuptools.packages.find]
where = [""]
[tool.setuptools.package-data]
smrf = [
'framework/CoreConfig.ini',
'framework/.qotw',
'framework/recipes.ini',
'framework/changelog.ini',
]
[tool.setuptools_scm]
local_scheme = 'node-and-date'
write_to = "smrf/version.py"
[tool.hatch.build.targets.sdist]
exclude = ["/smrf/tests"]