-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
58 lines (46 loc) · 1.06 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
[tool.poetry]
name = "najia"
version = "2.0.1"
description = ""
authors = ["bopo <[email protected]>"]
readme = "README.md"
include = ["CHANGELOG.md"]
repository = "https://github.com/bopo/najia"
homepage = "https://github.com/bopo/najia"
license = "MIT"
packages = [
{ include = "najia" }
]
[tool.poetry.scripts]
najia = 'najia.__main__:main'
[tool.poetry.dependencies]
python = "^3.9"
click = "^8.1.3"
arrow = "^1.2.3"
jinja2 = "^3.1.2"
lunar-python = "^1.3.2"
[[tool.poetry.source]]
name = "mirrors"
url = "https://mirrors.ustc.edu.cn/pypi/web/simple"
default = false
secondary = false
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = "tests"
addopts = "-p no:warnings"
log_cli = 0
log_cli_level = "DEBUG"
[tool.commitizen]
version = "2.0.1"
tag_format = "v$version"
update_changelog_on_bump = true
changelog_file = "CHANGELOG.md"
annotated_tag = true
version_files = [
"najia/__init__.py:__version__",
"pyproject.toml:version",
]