-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (68 loc) · 1.55 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "minolmo"
version = "0.1.0"
description = "A Simplified Version of OLMo Model"
authors = [
{ name = "Allen Institute for Artificial Intelligence", email = "olmo@allenai.org" },
{ name = "Research and Engineering at Kempner Institute", email = "kempner-research-engineering@g.harvard.edu" },
]
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
dependencies = [
"numpy",
"torch",
"omegaconf",
"rich",
"requests",
]
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
dev = [
"ruff",
"mypy>=1.0,<1.4",
"black>=23.1,<24.0",
"isort>=5.12,<5.13",
"pytest",
"pytest-sphinx",
"twine>=1.11.0",
"setuptools",
"wheel",
"build",
]
train = [
"wandb",
"beaker-gantry",
"click",
"torchmetrics",
"smashed[remote]>=0.21.1",
"safetensors",
"datasets",
"scikit-learn",
"msgspec>=0.14.0",
]
all = [
"minolmo[dev,train]",
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"sphinxcontrib-napoleon",
"myst-parser",
"nbsphinx",
"recommonmark",
"sphinx-copybutton",
"sphinxcontrib-bibtex",
]
[project.urls]
Homepage = "https://github.com/KempnerInstitute/min-olmo"
Repository = "https://github.com/KempnerInstitute/min-olmo"
[tool.setuptools.dynamic]
version = { attr = "minolmo.version.VERSION" }
[tool.pytest.ini_options]
log_format = "%(asctime)s - %(levelname)s - %(name)s - %(message)s"
log_level = "DEBUG"