-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (37 loc) · 925 Bytes
/
pyproject.toml
File metadata and controls
51 lines (37 loc) · 925 Bytes
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
[project]
name = "ateru"
version = "0.1.0a0"
description = "Open source VFX/Animation pipeline for freelancers and small studios."
authors = [{ name = "Ronny Ascencio" }]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11,<3.12"
dependencies = [
"flet[all]>=0.81.0",
"loguru>=0.7.3",
"pydantic>=2.8,<3.0",
"pyside6>=6.10.1",
"tomli>=2.3.0",
"tomli-w>=1.2.0",
"typer>=0.21.1",
]
[project.scripts]
ateru = "ateru.cli.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
package = true
[tool.hatch.build.targets.wheel]
packages = ["src/ateru"]
[tool.hatch.build.targets.sdist]
include = ["src"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.0a28"
version_scheme = "pep440"
tag_format = "v$version"
update_changelog_on_bump = true
changelog_file = "CHANGELOG.md"