-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (66 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
76 lines (66 loc) · 1.84 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "deepsigma"
version = "2.1.3"
description = "DeepSigma Core - Drift to Patch governed execution"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Bryan David White", email = "8ryanWh1t3@gmail.com"},
]
keywords = ["governance", "coherence-ops", "drift-patch"]
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",
]
dependencies = [
"jsonschema",
"referencing>=0.35.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"ruff",
"pyright",
"pre-commit",
]
excel = [
"openpyxl>=3.1.0",
]
[project.urls]
Homepage = "https://github.com/8ryanWh1t3/DeepSigma"
Repository = "https://github.com/8ryanWh1t3/DeepSigma"
Issues = "https://github.com/8ryanWh1t3/DeepSigma/issues"
[project.scripts]
coherence = "core.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
include = [
"core*",
]
[tool.setuptools.package-data]
core = ["schemas/*.schema.json", "schemas/feeds/*.schema.json", "schemas/jrm/*.schema.json", "fixtures/feeds/*.json", "fixtures/jrm/*", "fixtures/*.json", "examples/*.json", "py.typed"]
[tool.ruff]
select = ["E", "F", "W"]
ignore = ["E501"]
[tool.pyright]
include = ["src/core"]
exclude = ["src/core/examples"]
pythonVersion = "3.10"
typeCheckingMode = "basic"
reportMissingTypeStubs = false
reportMissingImports = "warning"
reportOptionalMemberAccess = "warning"
[tool.pytest.ini_options]
testpaths = ["tests"]