-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (67 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
74 lines (67 loc) · 1.58 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "mbari-pbp"
version = "1.8.74"
description = "PyPAM based Processing"
authors = [
"Carlos Rueda <carueda@mbari.org>",
"Danelle Cline <dcline@mbari.org>",
"John Ryan <ryjo@mbari.org>",
]
maintainers = [
"Carlos Rueda <carueda@mbari.org>",
"Danelle Cline <dcline@mbari.org>",
]
homepage = "https://docs.mbari.org/pbp/"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/mbari-org/pbp"
packages = [{include = "pbp"}]
[tool.poetry.scripts]
pbp = "pbp.main_cli:main"
pbp-hmb-gen = "pbp.hmb_gen.main_hmb_generator:main"
pbp-cloud = "pbp.cloud.main_cloud:main"
pbp-hmb-plot = "pbp.hmb_plot.main_plot:main"
pbp-meta-gen = "pbp.meta_gen.main_meta_generator:main"
[tool.poetry.dependencies]
python = ">=3.10,<3.12.0"
lifewatch-pypam = "0.3.2"
boto3 = "^1.35.0"
google-cloud-storage = "2.18.0"
dataclasses-json = "0.6"
python-dateutil = "2.8.2"
pyyaml = "6.0"
progressbar2 = "3.53.1"
marshmallow = "3.26.2"
soundfile = "0.12.1"
h5netcdf = "1.3.0"
pvlib = "^0.11.0"
Pyarrow = "15.0.0"
loguru = "^0.7.2"
awscli = "^1.34.0"
isodate = "^0.7.2"
[tool.poetry.group.dev.dependencies]
ruff = "0.2.2"
pytest = "7.4.4" # not upgraded due to conflict with pypam 0.3.0
syrupy = "4.6.1"
prek = "0.3.2"
pyinstaller = "^6.11.0"
ty = "^0.0.11"
[tool.ruff]
line-length = 90
exclude = [
"virtenv/**",
"build/",
"dist/",
"mbari-pbp-standalone/"
]
[tool.ty.src]
exclude = [
"pbp/meta_gen/*",
"notebooks/*",
]
[tool.pytest.ini_options]
testpaths = ["tests",]
pythonpath = ["."]