-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (88 loc) · 2.17 KB
/
Copy pathpyproject.toml
File metadata and controls
97 lines (88 loc) · 2.17 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = ["setuptools>=42.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dominosee"
version = "0.0.1-alpha"
description = "A tool for spatial climate network analysis"
readme = "README.md"
authors = [
{name = "Huimin Wang", email = "wanghuimin@u.nus.edu"},
]
license = {file = "LICENSE.txt"}
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Hydrology",
"Operating System :: OS Independent",
]
dependencies = [
"xarray>=0.20.0",
"dask",
"numpy>=1.20.0",
"pandas",
"scipy",
"numba>=0.55.0",
"netCDF4",
"cf-xarray",
"bottleneck",
"ipykernel",
"tqdm",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov",
"black",
"isort",
"matplotlib",
"cartopy",
]
docs = [
"sphinx>=6.0.0",
# "sphinx-rtd-theme>=1.0.0", # Not currently used, using Furo instead
"furo>=2023.9.10",
"nbsphinx>=0.8.0",
"sphinx-copybutton>=0.5.0",
"jupyter-sphinx>=0.3.2",
"sphinx-autodoc-typehints>=1.15.0",
"sphinx-design>=0.5.0",
"sphinxcontrib-bibtex>=2.5.0",
"sphinxcontrib-video>=0.2.0",
"sphinxext-opengraph>=0.9.0",
"matplotlib",
"cartopy"
]
[project.urls]
homepage = "https://github.com/PREP-NexT/DOMINO-SEE"
[tool.setuptools.packages.find]
where = ["."]
include = ["dominosee*"]
exclude = ["tests.*"]
[tool.setuptools.package-data]
"tests.data" = ["test_*.nc"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::UserWarning"
]
[tool.black]
line-length = 88
target-version = ['py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true