-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.58 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (53 loc) · 1.58 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "prompt-versioner"
version = "0.3.1"
description = "Intelligent versioning system for LLM prompts with Git integration"
readme = "README.md"
authors = ["Sveva Pepe <sveva.pepe@gmail.com>"]
license = "MIT"
packages = [{ include = "prompt_versioner" }]
homepage = "https://github.com/pepes97/prompt-versioner"
repository = "https://github.com/pepes97/prompt-versioner"
documentation = "https://pepes97.github.io/prompt-versioner/"
[tool.poetry.dependencies]
python = ">=3.11"
click = ">=8.1.7"
rich = ">=13.7.0"
flask = ">=3.0.0"
pyyaml = ">=6.0.3"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.4.3"
pytest-cov = ">=4.1.0"
black = ">=23.12.0"
ruff = ">=0.1.8"
types-pyyaml = ">=6.0.12.20250915"
mkdocs = ">=1.5.3"
mkdocstrings = { extras = ["python"], version = ">=0.24.0" }
mkdocs-autorefs = ">=0.5.0"
pre-commit = "^4.5.0"
[tool.poetry.scripts]
pv = "prompt_versioner.cli.main_cli:main"
prompt-dashboard = "prompt_versioner.cli.commands.dashboard:dashboard_standalone"
prompt-clear = "prompt_versioner.cli.commands.management:clear_db_standalone"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ['py311']
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.mypy]
python_version = "3.11"
mypy_path = ["."]
files = ["prompt_versioner/"]
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
no_implicit_optional = true
strict_equality = true
check_untyped_defs = true
ignore_missing_imports = true
explicit_package_bases = true
namespace_packages = true