-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (57 loc) · 1.38 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
[tool.poetry]
name = "hobel-inperso-ieq"
version = "0.0.0"
description = "Python tools for the HOBEL InPerso IEQ project"
license = "GPL-3.0-or-later"
authors = [
"Son Pham-Ba <[email protected]>"
]
readme = "README.md"
packages = [
{ include = "inperso" }
]
[tool.poetry.dependencies]
python = "^3.10"
pre-commit = { version = "^3.6.2", optional = true }
pytest = { version = "^8.0.2", optional = true }
pytest-cov = { version = "^4.1.0", optional = true }
pytest-mock = { version = "^3.12.0", optional = true }
influxdb-client = "^1.41.0"
python-dotenv = "^1.0.1"
pyyaml = "^6.0.1"
requests = "^2.31.0"
[tool.poetry.extras]
dev = [
"pre-commit",
"pytest",
"pytest-cov",
"pytest-mock",
]
[build-system]
requires = ["poetry-core", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[tool.poetry-dynamic-versioning.substitution]
files = [
"hobel_inperso_ieq/__init__.py",
]
[tool.pytest.ini_options]
addopts = "--cov --cov-report html --cov-report term-missing --cov-fail-under 5"
[tool.poetry.scripts]
inperso-retrieve = "inperso.data_acquisition.retrieve:main"
[tool.ruff]
line-length = 120
[tool.black]
line-length = 120
preview = true
[tool.mypy]
python_version = "3.10"
[tool.isort]
line_length = 120
profile = "black"
[tool.codespell]
# ignore-words-list = ""
skip = "poetry.lock"