-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.11 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
[build-system]
requires = ["setuptools>=65.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
[project]
name = "nanugpt"
version = "0.4.0"
authors = [
{ name = "Shital Shah", email = "[email protected]" }
]
maintainers = [
{ name = "Shital Shah", email = "[email protected]" }
]
description = "Simple, reliable and well tested training code for quick experiments with transformer based models"
readme = "README.md"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research"
]
keywords = ["gpt", "nanogpt", "tinystories", "grokking", "openwebtext", "pretraining"]
dependencies = [
"einops",
"tiktoken",
"wandb",
"mlflow",
"sentencepiece",
"tokenizers",
"tiktoken",
"transformers",
"datasets",
"tqdm",
"matplotlib",
"rich"
]
[project.urls]
Homepage = "https://github.com/sytelus/nanugpt"
Repository = "https://github.com/sytelus/nanugpt"