forked from CarperAI/Algorithm-Distillation-RLHF
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 721 Bytes
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 721 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
34
35
36
37
38
39
40
[tool.isort]
profile = "black"
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.pydocstyle]
convention = "google"
add-ignore = "D10"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-rA"
testpaths = ["tests"]
[project]
name = "algorithm-distillation"
description = ""
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
dynamic = ["version", "dependencies"]
[project.optional-dependencies]
test = [
"black",
"isort",
"flake8",
"pydocstyle",
"pytype",
"pre-commit",
"pytest",
"pytest-cov",
]
notebook = ["ipython"]