-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.36 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
[project]
authors = [
{name = "Smithed Team", email = "team@smithed.dev"},
]
dependencies = [
"beet @ git+https://github.com/Smithed-MC/beet@fix/overlay-folder-names",
"mecha>=0.95.2",
"typer>=0.9.0",
"tokenstream>=1.7.0",
"backports-strenum>=1.2.8",
"rich>=13.6.0",
"pydantic>=2.5.2",
]
description = "Smithed's Python client with CLI, Weld and more"
license = "MIT"
name = "smithed"
readme = "README.md"
requires-python = ">= 3.10"
version = "0.19.0"
[project.scripts]
weld = "smithed.weld:cli"
[tool.rye]
dev-dependencies = [
"ruff>=0.0.292",
"streamlit>=1.34.0",
"black>=23.9.1",
"pytest>=7.4.2",
"pytest-insta>=0.2.0",
"lectern>=0.29.1",
"devtools>=0.12.2",
"streamlit-extras>=0.4.0",
"python-semantic-release>=9.1.1",
"ipython>=8.16.1",
"twine>=5.0.0",
"streamlit-elements>=0.1.0",
"streamlit-router>=0.1.8",
]
managed = true
[tool.semantic_release]
branch = "main"
build_command = "rye build"
major_on_zero = false
version_toml = ["pyproject.toml:project.version"]
version_variables = ["smithed/__init__.py:__version__", "smithed/weld/__init__.py:__version__"]
[tool.pyright]
mode = "strict"
[tool.hatch.build.targets.wheel.force-include]
"smithed/weld" = "weld"
[tool.hatch.metadata]
allow-direct-references = true
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling<1.19"]