-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.02 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
[project]
name = "nano-language-model"
version = "0.1.0"
description = "Nano model that transforms natural language into propositional logic"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
# — Core ML —
"torch>=2.2.0",
"lightning>=2.4.0",
"torchmetrics>=1.6.0",
# — Tokenization —
"tokenizers>=0.21.0",
# — Data —
"jsonlines>=4.0.0",
"rich>=13.9.0",
# — Logging —
"tensorboard>=2.18.0",
# — Data Generation —
"openai>=2.20.0",
"python-dotenv>=1.2.1",
# — Evaluation —
"sympy>=1.14.0",
# — Demo (future) —
"gradio>=5.0.0",
"pyrefly>=0.48.2",
"schedulefree>=1.4.1",
]
[project.optional-dependencies]
dev = [
"ruff>=0.14.13",
"pytest>=8.0.0",
"pytest-cov>=6.0.0",
]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP", "B", "SIM", "RUF"]
[tool.ruff.format]
quote-style = "double"
[tool.pyright]
pythonVersion = "3.10"
typeCheckingMode = "basic"