-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (60 loc) · 1.95 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
[tool.poetry]
name = "autoload-module"
version = "3.0.0"
description = "Python Autoload Module"
authors = ["Hiroki Miyaji <[email protected]>"]
license = "MIT"
maintainers = ["Hiroki Miyaji <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/hiroki0525/autoload_module"
repository = "https://github.com/hiroki0525/autoload_module"
documentation = "https://github.com/hiroki0525/autoload_module"
keywords = ["python", "import", "autoload", "autoload_module", "dynamic import"]
classifiers = [
'Topic :: Software Development :: Libraries',
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
]
packages = [
{ include = "autoload" },
]
[tool.poetry.dependencies]
python = ">=3.9"
[tool.poetry.dev-dependencies]
pre-commit = "*"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.1"
ruff = "^0.8.1"
mypy = "^1.13.0"
pytest = "^8.3.4"
[tool.semantic_release]
# not working in ci, so add install poetry command
build_command = "pip install poetry && poetry build"
version_toml = ["pyproject.toml:tool.poetry.version"]
version_variables = ["autoload/__init__.py:__version__"]
tag_format = "{version}"
[tool.semantic_release.branches.main]
match = "(main|master|develop)"
prerelease = false
[tool.semantic_release.branches.develop]
match = "develop"
prerelease = true
[tool.semantic_release.changelog]
mode = "init"
exclude_commit_patterns = [
'''chore(?:\([^)]*?\))?: .+''',
'''ci(?:\([^)]*?\))?: .+''',
'''refactor(?:\([^)]*?\))?: .+''',
'''style(?:\([^)]*?\))?: .+''',
'''test(?:\([^)]*?\))?: .+''',
'''build\((?!deps\): .+)''',
'''Merged? .*''',
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"