-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
75 lines (67 loc) · 1.63 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
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "mbari-pbp"
version = "1.5.0"
description = "PyPAM based Processing"
authors = [
"Carlos Rueda <[email protected]>",
"Danelle Cline <[email protected]>",
"John Ryan <[email protected]>",
]
maintainers = [
"Carlos Rueda <[email protected]>",
"Danelle Cline <[email protected]>",
]
homepage = "https://docs.mbari.org/pbp/"
license = "MIT"
readme = "README.md"
repository = "https://github.com/mbari-org/pbp"
packages = [{include = "pbp"}]
[tool.poetry.scripts]
pbp-hmb-gen = "pbp.main_hmb_generator:main"
pbp-cloud = "pbp.main_cloud:main"
pbp-hmb-plot = "pbp.main_plot:main"
pbp-meta-gen = "pbp.main_meta_generator:main"
[tool.poetry.dependencies]
python = ">=3.9,<3.12.0"
lifewatch-pypam = "0.3.0"
boto3 = "1.34.47"
google-cloud-storage = "2.18.0"
dataclasses-json = "0.6"
python-dateutil = "2.8.2"
pyyaml = "6.0"
progressbar2 = "3.53.1"
marshmallow = "3.20.2"
soundfile = "0.12.1"
h5netcdf = "1.3.0"
pvlib = "0.10.3"
Pyarrow = "15.0.0"
loguru = {extras = ["mypy"], version = "^0.7.2"}
loguru-mypy = "^0.0.4"
awscli = "^1.33.20"
[tool.poetry.group.dev.dependencies]
mypy = "1.8.0"
ruff = "0.2.2"
pytest = "7.4.4" # not upgraded due to conflict with pypam 0.3.0
syrupy = "4.6.1"
types-python-dateutil = "2.8.2"
types-PyYAML = "6.0.1"
types-six = "^1.16.21.20240513"
types-pytz = "^2024.1.0.20240417"
[tool.mypy]
show_error_codes = true
ignore_missing_imports = true
exclude = [
'examples/',
'pbp/plotting\.py'
]
[tool.ruff]
line-length = 90
exclude = [
"virtenv/**"
]
[tool.pytest.ini_options]
testpaths = ["tests",]
pythonpath = ["."]