-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (34 loc) · 1.32 KB
/
pyproject.toml
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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0"]
[project]
authors = [{name = "Deepak Chandan", email = "[email protected]"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
description = "A python client to access information about the Marble climate infomatics network"
dynamic = ["dependencies", "optional-dependencies"]
keywords = ["climate", "climate infomatics", "climate data", "DACCS", "Marble"]
license = {file = "LICENSE"}
name = "marble_client"
readme = "README.md"
requires-python = ">=3.9"
version = "1.2.0"
[project.urls]
# Homepage will change to Marble homepage when that goes live
"Bug Tracker" = "https://github.com/DACCS-Climate/marble_client_python/issues"
"Homepage" = "https://github.com/DACCS-Climate/marble_client_python"
[tool.setuptools]
packages = ["marble_client"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies.test = {file = ["requirements-test.txt"]}
[tool.black]
line-length = 120
[tool.pytest.ini_options]
markers = [
"load_from_cache: marks tests that should load the registry from a cached version",
"jupyterlab_environment: marks tests that test features that are only available in a Marble jupyterlab environment"
]