-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
53 lines (45 loc) · 1.24 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
[tool.poetry]
name = "apple-health-parser"
version = "0.5.4"
description = "Python package to parse, analyse, and plot Apple HealthKit data"
authors = ["Alexandre Cirilo <38657258+alxdrcirilo@users.noreply.github.com>"]
repository = "https://github.com/alxdrcirilo/apple-health-parser"
license = "MIT"
readme = "README.md"
packages = [{ include = "apple_health_parser" }]
[tool.poetry.dependencies]
python = "^3.11"
click = "^8.1.7"
kaleido = "0.2.1"
pandas = "^2.2.2"
plotly = "^5.22.0"
pydantic = "^2.7.1"
pyyaml = "^6.0.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.4.4"
pyclean = "^3.0.0"
mkdocstrings = { extras = ["python"], version = "^0.25.1" }
mkdocs-material = "^9.5.24"
pytest = "^8.2.2"
pytest-cov = "^5.0.0"
termynal = "^0.12.1"
[tool.poetry.scripts]
cli = "apple_health_parser.scripts.main:main"
[tool.coverage.run]
omit = [
"apple_health_parser/scripts/main.py",
]
[tool.semantic_release]
tag_format = "{version}"
version_toml = ["pyproject.toml:tool.poetry.version"]
major_on_zero = false
upload_to_PyPI = false
upload_to_release = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
select = ["I", "F401"]
ignore-init-module-imports = true
[tool.mypy]
ignore_missing_imports = true