-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 778 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 778 Bytes
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "scmcoat"
authors = [
{ name="Kelly McCusker", email="kellymccusker@gmail.com" },
]
description = "Wraps FaIR simple climate model with specific settings for use across projects"
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"fair~=1.6.4",
"numpy",
"pandas",
"xarray",
]
[project.urls]
"Homepage" = "https://github.com/kemccusker/scmcoat"
"Bug Tracker" = "https://github.com/kemccusker/scmcoat/issues"
[tool.hatch.version]
source = "vcs"
fallback-version = "999"