-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
executable file
·51 lines (46 loc) · 1.27 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools >= 61.0", "wheel"]
[tool.setuptools]
packages = ["chinchilla"]
[project]
name = 'chinchilla'
version = "0.1.4"
description = "A toolkit for scaling law research"
authors = [{ name = 'Kyo Takano', email = 'kyo.takano@mentalese.co' }]
urls = {Homepage = "https://github.com/kyo-takano/chinchilla"}
readme = "README.md"
license = { file = 'LICENSE' }
requires-python = '>=3.8'
dependencies = [
"pydantic>=2.0.0,<3.0.0",
"numpy",
"scipy",
"rich",
"seaborn",
"ruamel.yaml>=0.18.0",
"attrdictx",
"ordinal",
]
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
test = ["pytest"]
[tool.ruff]
target-version = "py38"
line-length = 119
ignore = ["C901", "E501"]
extend-include = ["*.ipynb"]
[tool.ruff.format]
skip-magic-trailing-comma = true