-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
64 lines (57 loc) · 1.72 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "leanformer"
version = "0.3.0"
description = "LeanFormer: Efficient transformer with governed training, low-rank weights, sparse attention, adaptive depth, knowledge plane, and delta belief system"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Brian Moore"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"torch>=2.3.0",
"transformers>=4.41.0",
"datasets>=2.19.0",
"tokenizers>=0.19.1",
"accelerate>=0.30.0",
"peft>=0.11.0",
"wandb>=0.17.0",
"fastapi>=0.111.0",
"uvicorn>=0.30.0",
"rich>=13.7.0",
"numpy>=1.26.4",
"einops>=0.8.0",
"pyyaml>=6.0",
"requests>=2.25.0",
"lm-eval>=0.4.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-timeout>=2.2",
]
[project.scripts]
leanformer-train = "leanformer.scripts.train:main"
leanformer-serve = "leanformer.scripts.serve:main"
leanformer-chat = "leanformer.scripts.chat:main"
leanformer-demo = "leanformer.scripts.demo:main"
[project.urls]
Repository = "https://github.com/brian-c-moore/LeanFormer"
Documentation = "https://github.com/brian-c-moore/LeanFormer/tree/main/docs"
Issues = "https://github.com/brian-c-moore/LeanFormer/issues"
[tool.setuptools.packages.find]
include = ["leanformer*"]
[tool.pytest.ini_options]
testpaths = ["tests"]