-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 1.02 KB
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
[tool.poetry]
name = "sucoder"
version = "0.0.0"
description = "Tools for securely collaborating with an LLM agent via git mirrors."
authors = ["Ligon and Sue the Coder"]
license = "Apache-2.0"
readme = "README.org"
packages = [{ include = "sucoder" }]
[tool.poetry.dependencies]
python = "^3.9"
pyyaml = "^6.0"
typer = { version = "^0.12", extras = ["all"] }
click = ">=8.1,<8.2"
packaging = "^24.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2"
mypy = "^1.18"
types-pyyaml = "^6.0"
[tool.poetry.scripts]
sucoder = "sucoder.cli:app"
[tool.mypy]
python_version = "3.11"
show_error_codes = true
pretty = true
[tool.poetry-dynamic-versioning]
enable = true
style = "pep440"
format-jinja = """
{%- if distance == 0 -%}
{{ base }}
{%- else -%}
{{ base }}.dev{{ distance }}+g{{ commit }}
{%- endif -%}
"""
[tool.poetry-dynamic-versioning.substitution]
files = []
[build-system]
requires = ["poetry-core>=1.7.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"