-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (44 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
53 lines (44 loc) · 1.19 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
[tool.poetry]
name = "normalise-email"
packages = [
{ include = "normalise" },
]
version = "0.1.29"
description = "Python port of normalizeEmail.js."
authors = ["PsypherPunk <psypherpunk@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
commitizen = "^3.28.0"
pre-commit = "^3.7.1"
pytest = "^8.3.1"
pytest-cov = "^5.0.0"
pytest-mypy = "^0.10.3"
[tool.commitizen]
version = "0.1.29"
bump_message = "bump: version $current_version → $new_version [skip ci]"
version_files = [
"pyproject.toml:^version",
]
[tool.commitizen.customize]
bump_pattern = '^(BREAKING CHANGE|build|chore|docs|feat|fix|refactor|test)(\(.+\))?(!)?'
bump_map = {"!" = "MAJOR", build = "PATCH", chore = "PATCH", docs = "PATCH", feat = "MINOR", fix = "PATCH", refactor = "PATCH", test = "PATCH" }
[tool.coverage.report]
show_missing = true
omit = ["tests/*"]
sort = "cover"
fail_under = 100
skip_empty = true
[tool.isort]
profile = "black"
[tool.markdownlint.MD013]
line_length = 100
code_blocks = false
tables = false
[tool.pytest.ini_options]
pythonpath = "."
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"