-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (76 loc) · 2.25 KB
/
pyproject.toml
File metadata and controls
93 lines (76 loc) · 2.25 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "csl-core"
dynamic = ["version"]
description = "CSL-Core: Deterministic Safety Layer for Probabilistic AI Systems"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
keywords = ["ai-safety", "formal-verification", "langchain", "policy-engine", "z3"]
authors = [
{name = "Aytug Akarlar", email = "akarlaraytu@gmail.com"},
]
maintainers = [
{name = "Chimera Team", email = "akarlaraytu@gmail.com"},
]
# BAĞIMLILIKLAR
dependencies = [
"z3-solver>=4.12.0",
"rich>=13.0.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
langchain = [
"langchain-core>=0.1.0",
"pydantic>=2.0.0",
]
dev = [
"pytest>=7.0",
"pytest-cov",
"ruff",
"black",
"mypy",
"langchain-core>=0.1.0",
"pydantic>=2.0.0",
]
mcp = ["mcp[cli]>=1.2.0"]
# LİNKLERİNİ GÜNCELLE
[project.urls]
Homepage = "https://github.com/Chimera-Protocol/csl-core"
Documentation = "https://github.com/Chimera-Protocol/csl-core/tree/main/docs"
Repository = "https://github.com/Chimera-Protocol/csl-core"
Issues = "https://github.com/Chimera-Protocol/csl-core/issues"
[project.scripts]
cslcore = "chimera_core.cli:main"
csl-core-mcp = "chimera_core.mcp.server:main"
# --- SETUPTOOLS CONFIGURATION ---
[tool.setuptools.dynamic]
version = {attr = "chimera_core.__version__"}
[tool.setuptools.packages.find]
where = ["."]
include = ["chimera_core*"]
exclude = ["tests*", "docs*", "examples*", "quickstart*", "benchmarks*"]
[tool.setuptools.package-data]
"*" = ["*.csl", "*.json", "*.md"]
# --- DEV TOOLS ---
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --cov=chimera_core --cov-report=term-missing"