-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (41 loc) · 1.19 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
[build-system]
requires = ["setuptools>=70.0.0", "wheel>=0.43.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = [""]
include = ["hermes"]
exclude = ["web"]
[project]
name = "HERMES"
version = "0.1.0"
description = "Hub for Earthquake foRecasts ManagEment and Scheduling "
readme = "README.md"
authors = [
{ name = "Laura Sarson" },
{ name = "Nicolas Schmid", email = "nicolas.schmid@sed.ethz.ch" },
]
license = { file = "LICENSE" }
dependencies = [
"alembic",
"alembic-utils",
"geoalchemy2",
"hermes-model @ git+https://gitlab.seismo.ethz.ch/indu/hermes-model.git",
"hydws-client @ git+https://git@gitlab.seismo.ethz.ch/indu/hydws-client.git",
"prefect",
"psycopg2",
"pydantic",
"pydantic-settings",
"python-dotenv",
"requests",
"seismostats @ git+https://github.com/swiss-seismological-service/SeismoStats.git",
"sqlalchemy",
"typer",
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = ["pytest", "pyarrow", "isort", "pytest-cov", "tox", "flake8"]
[project.scripts]
hermes = "hermes.cli:app"
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
filterwarnings = ["ignore:divide by zero"]