-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
78 lines (71 loc) · 1.66 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
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["setuptools>=65.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fittie"
version = "0.8.1"
description = "FIT file tool"
authors = [
{ name = "Marcel Blijleven" }
]
maintainers = [
{ name = "Marcel Blijleven" }
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
keywords = [
"fit",
"fitfile",
"fitfile decode",
"decoding",
"garmin",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.optional-dependencies]
dev = [
"black == 22.10.0",
"ruff == 0.0.246",
"pytest == 7.2.0"
]
[project.urls]
Homepage = "https://github.com/marcelblijleven/fittie"
repository = "https://github.com/marcelblijleven/fittie"
[tool.setuptools.packages.find]
exclude = [
".github",
"examples",
"scripts",
"tests"
]
[tool.ruff]
line-length = 88
exclude = [
".git",
"*.json",
"fittie/fitfile/profile/fit_types.py"
]
[tool.coverage.run]
omit = [
"fittie/fitfile/profile/fit_types.py",
"fittie/fitfile/profile/mesg_nums.py",
"fittie/fitfile/profile/messages.py"
]
[tool.commitizen]
version = "0.8.1"
version_files = [
"pyproject.toml",
"fittie/__init__.py"
]
update_changelog_on_bump = true
tag_format = "v$major.$minor.$patch$prerelease"
annotated_tag = true
major_version_zero = true # Disable this when ready to go to 1.0.0
change_type_map = { "feat" = "Features ✨", "fix" = "Bugfixes 🐛" }