-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (38 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
46
47
48
49
################################################################
#### poetry config ####
################################################################
[tool.poetry]
name = "brainscore_language"
version = "0.1.0"
description = ""
authors = []
license = "MIT"
[tool.poetry.dependencies]
python = "3.8.*"
tqdm = "*"
numpy = "^1.21"
brainscore_core = { git = "https://[email protected]/brain-score/core.git", branch="main" }
brainio = { git = "https://github.com/brain-score/brainio.git", branch="main" }
[tool.poetry.dev-dependencies]
pdoc3 = "^0.10.0"
ipython = "^8"
mypy = "^0.931"
lxml = "^4.7.1"
pytest = "*"
coverage = {extras = ["toml"], version = "^6.3.1"}
pytest-html = "^3"
yapf = "^0.32.0"
transformers = "^4.11.3"
torch = "^1.9.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
################################################################
#### mypy type-checking config ####
################################################################
[tool.mypy]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = [
"tests"
]