This repository has been archived by the owner on Feb 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
104 lines (90 loc) · 2.23 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
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
[tool.poetry]
name = "morpho"
version = "0.2.0"
description = "morpho"
authors = ["mraniki <[email protected]>"]
license = "MIT License"
readme = "README.md"
packages = [
{ include = "morpho", from = "src" }
]
[tool.poetry.urls]
"Changelog" = "https://github.com/mraniki/morpho/blob/dev/CHANGELOG.rst"
"Support" = "https://github.com/mraniki/morpho/discussions"
"Issues" = "https://github.com/mraniki/morpho/issues"
[tool.poetry.dependencies]
python = "^3.10"
dynaconf = "^3.1.12"
loguru = "^0.7.0"
uvicorn = "^0.23.0"
fastapi = "^0.103.1"
playwright = "^1.36.0"
gspread = "^5.10.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.0"
pytest-cov = "^4.1"
pytest-asyncio = "^0.21.0"
pytest-mock = "^3.11.1"
pytest-loguru = "^0.2.0"
pytest-playwright = "^0.4.2"
[tool.poetry.group.dev.dependencies]
python-semantic-release = "^8.0.0"
ruff = "*"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = ">=5,<8"
sphinx_bootstrap_theme = "^0.8.1"
sphinxext-remoteliteralinclude = "^0.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[tool.semantic_release]
upload_to_vcs_release = true
#version_variables = ["pyproject.toml:version"]
version_toml = [
"pyproject.toml:tool.poetry.version",
]
build_command = "pip install poetry && poetry build"
commit_parser = "emoji"
[tool.semantic_release.commit_parser_options]
major_tags = [
"BREAKING",
"💥",
":boom:",
]
minor_tags = ["feat",
"🥚",":egg:",
"🚀",":rocket:",
"💄",":lipstick:",
"✨",":sparkles:",
]
patch_tags = ["fix","bump","Update",
"🎨",":art:",
"🐛",":bug:",
"🚑",":ambulance:",
"⚡",":zap:",
"🔥",":fire:",
"🚨",":rotating_light:",
"♻️",":recycle:",
"🔧",":wrench:",
"⬆️",":arrow_up:",
"🩹",":adhesive_bandage:",
"👷",":construction_worker:",
"📝",":memo:",
"🔒",":lock:",
"👽",":alien:",
"💬",":speech_balloon:",
"🥅",":goal_net:",
"✅",":white_check_mark:",
"🐳",":whale:",
"🙈",":see_no_evil:",
"⚗️",":alembic:",
"🧐",":monocle_face:",
"🔇",":mute:",
"🔊",":volume:",
]