-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.25 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
[tool.poetry]
name = "intentguard"
version = "1.4.0-dev"
description = "A Python library for verifying code properties using natural language assertions."
authors = ["Kosma Dunikowski <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/kdunee/intentguard"
keywords = ["testing", "pytest", "unittest", "ai-testing", "llm", "code-verification", "natural-language", "test-automation", "code-quality", "language-models"]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
include = [
"intentguard/infrastructure/*.gguf",
"intentguard/infrastructure/llamafile.exe"
]
exclude = [
".github",
".idea",
".intentguard",
".run",
"ai_research",
"scripts",
"design",
"dist",
"tests",
"._codebase_digest.txt",
"*.iml",
"__pycache__",
".mypy_cache",
]
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.scripts]
prepare = "scripts.prepare:main"
[tool.poetry.group.dev.dependencies]
ruff = "^0.6.9"
mypy = "^1.13.0"
[tool.mypy]
files = "intentguard/**/*.py"
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"