-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (45 loc) · 1014 Bytes
/
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
[tool.poetry]
name = "pyquad"
version = "0.1.0"
description = ""
authors = ["ocsmit <[email protected]>"]
readme = "README.md"
packages = [{include = "pyquad"}]
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.23.4"
scipy = "^1.9.3"
rasterio = "^1.3.3"
gdal = "3.5.2"
matplotlib = "^3.6.2"
numba = "^0.56.4"
jupyterlab = "^3.5.0"
rich = {extras = ["jupyter"], version = "^12.6.0"}
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
mypy = "^0.982"
pytest = "^7.2.0"
coverage = "^6.5.0"
[tool.black]
line-length = 80
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylsp-mypy]
enabled = true
live_mode = false
strict = true
dmypy = true
[tool.poetry2conda]
name = "pyquad"
# Missing stub file overrides
[[tool.mypy.overrides]]
module = "matplotlib.*"
ignore_missing_imports = true
ignore_errors = true
[[tool.mypy.overrides]]
module = "scipy.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "rasterio.*"
ignore_missing_imports = true