-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 1.05 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "codeframe"
version = "0.1.0"
description = "Permit-drawing skeleton generator for California detached ADUs: deterministic core with a Claude Code agent layer."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Proprietary" }
authors = [
{ name = "CodeFrame contributors" }
]
keywords = ["cad", "dxf", "adu", "architecture", "permit", "residential", "california"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = ["pydantic>=2", "ezdxf>=1.4", "matplotlib>=3.8"]
[project.optional-dependencies]
dev = ["pytest", "pypdf"]
[tool.pytest.ini_options]
# ezdxf internals trip a NumPy 2.5 deprecation; not actionable here.
filterwarnings = ["ignore:Setting the shape on a NumPy array:DeprecationWarning"]
[project.scripts]
codeframe = "codeframe.cli:main"
[tool.setuptools.packages.find]
where = ["src"]