-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 1018 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (30 loc) · 1018 Bytes
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
[project]
name = "llm-pet"
version = "0.1.0"
description = "Pet project for learning LLMs"
authors = [
{name = "Tom Ferdinandt",email = "tomfs@icloud.com"}
]
requires-python = "~=3.12"
# darwin is for macOS (much lower versions, to get linter to work on my intel machine)
# linux is for google colab, and uses the actually up to date versions
dependencies = [
"torch~=2.2.2 ; sys_platform == 'darwin'",
"torch>=2.2.2 ; sys_platform == 'linux'",
"numpy (>=1.26.4,<2.0.0) ; sys_platform == 'darwin'",
"numpy>=2.0.0 ; sys_platform == 'linux'",
"pandas[parquet] (<3.0.0) ; sys_platform == 'darwin'",
"pandas[parquet]>=2.2.0 ; sys_platform == 'linux'",
# these are independent of the torch version
"requests (>=2.32.4,<3.0.0)",
"tqdm (>=4.67.3,<5.0.0)",
"lightning (>=2.6.5,<3.0.0)"
]
[dependency-groups]
dev = [
"ruff (>=0.15.15,<0.16.0)",
"jupyter (>=1.1.1,<2.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"