-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 887 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (39 loc) · 887 Bytes
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
[project]
name = "garmin-workouts"
version = "0.1.0"
description = "Command line tools for managing Garmin Connect workouts"
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
"requests==2.33.1",
"pyyaml==6.0.3",
"numpy==2.2.6",
"xlrd==2.0.2",
"pandas==2.3.3",
"cloudscraper==1.2.71",
]
[project.scripts]
garmin-workouts = "garminworkouts.__main__:main"
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"pytest-httpserver==1.1.5",
"ruff",
]
[tool.pytest.ini_options]
pythonpath = "."
testpaths = ["tests"]
addopts = "-rA --cov=garminworkouts --cov-branch --cov-fail-under=50"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"UP", # pyupgrade
"N", # pep8-naming
]