-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
63 lines (55 loc) · 1.53 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
62
63
[project]
name = "intentguard"
version = "2.1.2.dev0"
description = "A Python library for verifying code properties using natural language assertions."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Kosma Dunikowski", email = "kosmadunikowski@gmail.com" }]
keywords = ["testing", "pytest", "unittest", "ai-testing", "llm", "code-verification", "natural-language", "test-automation", "code-quality", "language-models"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/kdunee/intentguard"
Repository = "https://github.com/kdunee/intentguard"
[dependency-groups]
dev = [
"ruff>=0.15.11,<0.16",
"mypy>=1.20.1,<2",
]
validation = [
"datasets>=4.0.0,<5",
"tqdm>=4.67.1,<5",
]
dataset = [
"openai>=1.109.1,<2",
]
[tool.ruff]
target-version = "py310"
extend-exclude = ["ai_research"]
[tool.mypy]
files = "intentguard/**/*.py"
ignore_missing_imports = true
[tool.hatch.build.targets.wheel]
packages = ["intentguard"]
[tool.hatch.build.targets.sdist]
exclude = [
"/.agents",
"/ai_research",
"/design",
"/tests",
"/validation",
"/Makefile",
"**/__pycache__",
"*.pyc",
]
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"