-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (56 loc) · 1.12 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
62
63
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "uscrn"
authors = [{name = "zmoon", email = "zachary.moon@noaa.gov"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
requires-python = "~=3.9"
dependencies = [
"joblib",
"numpy >=1.21",
"pandas >=2,<3",
"PyYAML",
"requests",
"xarray",
]
[project.urls]
Home = "https://github.com/zmoon/uscrn"
Source = "https://github.com/zmoon/uscrn"
[project.optional-dependencies]
test = [
"fastparquet",
"mypy",
"netCDF4",
"pandas-stubs",
"pyarrow",
"pytest",
"pytest-cov",
]
dev = [
"ipython",
]
doc = [
"jupyterlab",
"matplotlib",
"myst-nb",
"myst-parser",
"sphinx",
"sphinx-book-theme",
"sphinx-click",
"sphinx-copybutton",
]
[tool.flit.sdist]
exclude = [".github/", ".gitignore", "tests/", "docs/"]
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
exclude = ["^venv/"]
install_types = true
ignore_missing_imports = true