-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.35 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
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zerottmm"
version = "0.1.0"
description = "Time‑to‑Mental‑Model: a local‑first code reading assistant (Phase A)"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Gaurav Sood", email = "contact@gsood.com" }
]
license = "MIT"
keywords = ["code-analysis", "static-analysis", "code-reading", "python", "ast"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"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 :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
# core dependencies – pure standard library so far
dependencies = []
[project.optional-dependencies]
# extras for the Streamlit UI and testing
ui = ["streamlit>=1.23", "openai>=1.0.0"] # Include OpenAI for UI
test = ["pytest"]
ai = ["openai>=1.0.0"] # Future AI integration
all = ["streamlit>=1.23", "pytest", "openai>=1.0.0"]
[project.scripts]
zerottmm = "zerottmm.cli:main"
[tool.setuptools.packages.find]
include = ["zerottmm*"]
exclude = ["app*"]