-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
43 lines (36 loc) · 981 Bytes
/
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
[tool.poetry]
name = "smithed-libraries"
version = "0.9.2"
description = "All of the Smithed Libraries"
authors = ["Smithed Council <team@smithed.dev>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
mecha = "^0.95.0"
bolt = "^0.49.0"
bolt-expressions = "^0.17.0"
beet = ">=0.108.5"
pydantic = "^2.5.2"
[tool.poetry.group.dev.dependencies]
black = "^22.8.0"
isort = "^5.10.1"
devtools = "^0.9.0"
python-semantic-release = "^7.32.2"
requests = "^2.28.1"
github-action-utils = "^1.1.0"
[tool.semantic_release]
branch = "main"
version_variable = ["smithed_libraries/__init__.py:__version__"]
version_toml = "pyproject.toml:tool.poetry.version"
major_on_zero = false
build_command = "poetry build"
[tool.isort]
profile = "black"
[tool.pyright]
typeCheckingMode = "strict"
[tool.poe.tasks]
format = {shell = "isort smithed_libraries & black smithed_libraries"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"