-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (94 loc) · 2.56 KB
/
Copy pathpyproject.toml
File metadata and controls
106 lines (94 loc) · 2.56 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[build-system]
requires = [
"setuptools >= 77.0.3",
"setuptools_scm[toml] >= 6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "strava-gear"
description = "Rule based tracker of gear and component wear primarily for Strava"
authors = [{name = "Tomáš Janoušek", email = "tomi@nomi.cz"}]
license = "MIT"
readme = {file="README.md", content-type="text/markdown"}
dynamic = ["version"]
classifiers = [ # https://pypi.org/classifiers/
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Utilities",
]
requires-python = ">= 3.10"
dependencies = [
"PyYAML >= 5.1",
"click >= 8.1.1",
"click-config-file >= 0.6.0",
"jsonschema >= 4.10",
"platformdirs >= 2.1",
"python-dateutil >= 2.7",
"tabulate >= 0.8.9",
]
[project.optional-dependencies]
strava = [
"strava-offline ~= 1.0",
]
[dependency-groups]
dev = [
"flake8 >= 6.1",
"isort >= 5.1",
"mypy >= 1.0",
"prysk >= 0.20.0",
"pytest >= 7.0",
"types-PyYAML >= 5.4.0",
"types-python-dateutil >= 2.7",
"types-tabulate >= 0.8.9",
]
[project.urls]
"Homepage" = "https://github.com/liskin/strava-gear"
"Release Notes" = "https://github.com/liskin/strava-gear/releases"
"Issues" = "https://github.com/liskin/strava-gear/issues"
"CI" = "https://github.com/liskin/strava-gear/actions"
"Donations (GitHub)" = "https://github.com/sponsors/liskin"
"Donations (PayPal)" = "https://www.paypal.me/lisknisi/10EUR"
[project.scripts]
strava-gear = "strava_gear.cli:cli"
strava-gear-sync = "strava_gear.cli_strava_offline:cli_sqlite [strava]"
[tool.gha-check-distro]
dependencies-apt = [
"jq",
"just",
"python3-bottle",
"python3-click",
"python3-click-option-group",
"python3-configobj",
"python3-dateutil",
"python3-flake8",
"python3-isort",
"python3-jsonschema",
"python3-mypy",
"python3-pip",
"python3-platformdirs",
"python3-pytest",
"python3-requests-oauthlib",
"python3-rich",
"python3-tabulate",
"python3-typeshed",
"python3-venv",
"python3-yaml",
]
[tool.setuptools_scm]
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.mypy]
python_executable = ".venv/bin/python3"
show_error_codes = true
[tool.isort]
profile = "open_stack"
[tool.ruff]
line-length = 120
# vim:set et: