-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (55 loc) · 1.51 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=42", "wheel", "versioneer"]
build-backend = "setuptools.build_meta"
[project]
name = "dms_datastore"
description = "Downloading tools and data repository management"
dynamic = ["version", "scripts", "license"]
authors = [
{name = "Eli Ateljevich", email = "[email protected]"},
{name = "Nicky Sandhu", email = "[email protected]"}
]
readme = "README.rst"
requires-python = "<3.13"
keywords = ["dms_datastore", "data", "repository", "download"]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
dependencies = [
"vtools3",
"pyyaml",
"beautifulsoup4",
"tqdm",
"requests",
"lxml",
"openpyxl",
"paramiko",
"pandas>=2",
"numpy<2",
"xarray",
"dask",
"scikit-learn",
"matplotlib",
"cfgrib",
"diskcache",
"pytest",
"pytest-runner"
]
[project.optional-dependencies]
dev = [
"pandoc"
]
[project.urls]
Homepage = "https://github.com/water-e/dms_datastore"
[tool.versioneer]
VCS = "git"
versionfile_source = "dms_datastore/_version.py"
versionfile_build = "dms_datastore/_version.py"
tag_prefix = ""
parentdir_prefix = "dms_datastore-"
[tool.pytest.ini_options]
norecursedirs = [".*", "*.egg*", "build", "dist", "conda.recipe"]
addopts = "--junitxml=junit.xml --ignore setup.py --ignore run_test.py --tb native --strict-markers --durations=20"
markers = ["serial: execute test serially (to avoid race conditions)"]