-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
110 lines (98 loc) · 2.42 KB
/
Copy pathpyproject.toml
File metadata and controls
110 lines (98 loc) · 2.42 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "codeshield-runtime"
version = "0.1.3"
description = "A secure, isolated, and self-healing Python code execution engine powered by uv and AST analysis."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [
{ name = "Senior Python Core Engineer" },
]
keywords = ["code", "execution", "sandbox", "self-healing", "ast", "uv"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pydantic>=2.0",
"tenacity>=8.0",
]
[project.optional-dependencies]
lint = [
"ruff>=0.5.0",
]
test = [
"pytest>=7.0",
"pytest-cov>=4.0",
]
llm = [
"google-genai>=0.1.0",
"python-dotenv>=1.0.0",
]
dev = [
"build>=1.0.0",
"twine>=5.0.0",
]
[project.urls]
Homepage = "https://github.com/AlgorithmicMind/codeshield"
Repository = "https://github.com/AlgorithmicMind/codeshield"
Issues = "https://github.com/AlgorithmicMind/codeshield/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/codeshield"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/tests",
"/README.md",
"/LICENSE",
"/pyproject.toml",
]
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "--cov=codeshield --cov-report=term-missing --cov-report=html --strict-markers"
filterwarnings = [
"error",
"ignore::DeprecationWarning",
]
[tool.coverage.run]
source = ["src/codeshield"]
branch = true
[tool.coverage.report]
show_missing = true
precision = 2
[tool.ruff]
target-version = "py310"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # Pyflakes
"I", # isort
"N", # pep8-naming
"W", # pycodestyle warnings
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_ignores = true
ignore_missing_imports = true