-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
131 lines (119 loc) · 2.9 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
# See https://setuptools.pypa.io/en/latest/userguide/quickstart.html for more project configuration options.
name = "nanogpt"
version = "0.1.0"
readme = "readme.md"
classifiers = [
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
authors = [
{name = "Jai Bhagat", email = "[email protected]"}
]
requires-python = ">=3.10"
dependencies = [
"black[jupyter]",
"ipdb",
"ipykernel",
"isort",
"jupyter",
"jupyterlab",
"matplotlib",
"numpy",
"optuna",
"pyright",
"pytest",
"pytest-cov",
"pytest-sphinx",
"ruff",
"scikit-learn",
"scipy",
"setuptools",
"tiktoken",
"torch",
"tqdm",
"twine",
"wandb",
"wheel",
]
license = {file = "license.md"}
[project.urls]
Homepage = "https://github.com/jkbhagatio/nanogpt"
Repository = "https://github.com/jkbhagatio/nanogpt"
[project.optional-dependencies]
dev = [
]
[tool.setuptools]
packages = { find = { where = ["."], exclude = ["data*", "ddp_and_fsdp*"] } }
[tool.setuptools.dynamic]
version = {attr = "nanogpt.version.VERSION"}
[tool.black]
line-length = 100
color = false
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
| env
| venv
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 2
[tool.ruff]
select = ["E", "W", "F", "I", "D", "UP", "S", "B", "A", "C4", "ICN", "PIE", "PT", "SIM", "PL"]
line-length = 100
ignore = [
"E201", "E202", "E203", "E231", "E731", "E702",
"S101",
"PT013",
"PLR0912", "PLR0913", "PLR0915"
]
extend-exclude = [".git", ".github", ".idea", ".vscode"]
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.pydocstyle]
convention = "google"
[tool.pyright]
reportMissingImports = "none"
reportImportCycles = "error"
reportUnusedImport = "error"
reportUnusedClass = "error"
reportUnusedfunction = "error"
reportUnusedVariable = "error"
reportDuplicateImport = "error"
reportWildcardImportFromLibrary = "error"
reportPrivateUsage = "error"
reportCallInDefaultInitializer = "error"
reportUnnecessaryIsInstance = "error"
reportUnnecesaryCast = "error"
reportUnnecesarryComparison = "error"
reportUnnecessaryContains = "error"
reportAssertAlwaysTrue = "error"
reportSelfClsParameterName = "error"
reportUnusedExpression = "error"
reportMatchNotExhaustive = "error"
reportShadowedImports = "error"
# *Note*: we may want to set all 'ReportOptional*' rules to "none", but leaving 'em default for now
venvPath = "."
venv = ".venv"
[tool.pytest.ini_options]
testpaths = "tests"
python_classes = [
"Test*",
"*Test"
]
log_format = "%(asctime)s - %(levelname)s - %(name)s - %(message)s"
log_level = "DEBUG"