-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (98 loc) · 2.57 KB
/
Copy pathpyproject.toml
File metadata and controls
109 lines (98 loc) · 2.57 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
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[project]
name = "sr8"
version = "1.2.4"
description = "SR8 local-first intent compiler"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{ name = "SR8 Engineering" }
]
keywords = ["compiler", "intent", "canonical", "local-first", "llm-assisted", "cli"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Libraries"
]
dependencies = [
"boto3>=1.35,<2.0",
"build>=1.2,<2.0",
"fastapi>=0.115,<1.0",
"httpx>=0.27,<1.0",
"pydantic>=2.7,<3.0",
"pydantic-settings>=2.4,<3.0",
"PyYAML>=6.0,<7.0",
"typer>=0.12,<1.0",
"uvicorn>=0.30,<1.0"
]
[project.urls]
Homepage = "https://github.com/skrikx/SR8_Python_Compiler_v1"
Documentation = "https://github.com/skrikx/SR8_Python_Compiler_v1/blob/main/docs/index.md"
Changelog = "https://github.com/skrikx/SR8_Python_Compiler_v1/blob/main/CHANGELOG.md"
Issues = "https://github.com/skrikx/SR8_Python_Compiler_v1/issues"
Repository = "https://github.com/skrikx/SR8_Python_Compiler_v1"
[project.optional-dependencies]
dev = [
"httpx>=0.27,<1.0",
"mypy>=1.11,<2.0",
"pytest>=8.0,<9.0",
"ruff>=0.6,<1.0"
]
[project.scripts]
sr8 = "sr8.cli:app"
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
pythonpath = ["src"]
[tool.hatch.build]
exclude = [
"/.codex",
"/.venv",
"/.mypy_cache",
"/.pytest_cache",
"/.ruff_cache",
"/.sr8",
"/build",
"/dist",
"/frontend/node_modules",
"/frontend/.npm-cache",
"/frontend/.svelte-kit",
"/SR8_Compiler_v1_Workflows.zip",
"/SR8_updated_zip_audit.md",
"/sr8_v1_compiler_first_run.txt",
"/examples/outputs/art_*.json",
"/examples/outputs/latest.json",
"/examples/outputs/latest.md",
]
[tool.ruff]
line-length = 100
target-version = "py311"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.mypy]
python_version = "3.11"
files = ["src"]
disallow_untyped_defs = true
check_untyped_defs = true
no_implicit_optional = true
warn_return_any = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unreachable = true
pretty = true
[[tool.mypy.overrides]]
module = ["yaml"]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["boto3", "botocore", "botocore.*"]
ignore_missing_imports = true