-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·75 lines (57 loc) · 1.5 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
[tool.pytest.ini_options]
addopts = "--timeout=900 --json-report-file=test_failure_report.json --json-report-indent=4 --json-report-omit=environment --json-report-omit=collectors --json-report --json-report-omit=keywords"
[tool.poetry]
name = "portability"
version = "0.1.0"
description = ""
authors = ["frasermince"]
[tool.poetry.group.m1]
optional = true
[tool.poetry.group.intel]
optional = true
[tool.poetry.group.vm]
optional = true
[tool.poetry.group.tpuvm]
optional = true
[tool.poetry.group.torch]
optional = true
[tool.poetry.group.m1.dependencies]
code-tokenize = "^0.2.0"
tensorflow-macos = "~2.11.0"
[tool.poetry.group.intel.dependencies]
code-tokenize = "^0.2.0"
tensorflow = "~2.11.0"
[tool.poetry.group.vm.dependencies]
tensorflow = "~2.11.0"
[tool.poetry.group.tpuvm.dependencies]
tensorflow = "~2.11.0"
cloud-tpu-client = "^0.10"
[tool.poetry.group.torch.dependencies]
torch = "~1.12.0"
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
datasets = "^2.4.0"
tqdm = "^4.64.0"
beautifulsoup4 = "^4.11.1"
matplotlib = "^3.6.0"
numpy = "^1.23.3"
seaborn = "^0.12.0"
pandas = "^1.5.0"
pytest = "^7.1.3"
absl-py = "^1.3.0"
protobuf = "^3.19"
expecttest = "^0.1.4"
hypothesis = "^6.58.0"
cmake = "^3.13.3"
pytest-xdist = "^3.2.1"
pytest-forked = "^1.6.0"
portpicker = "^1.5.2"
scipy = "^1.10.1"
pytest-timeout = "^2.1.0"
pytest-json-report = "^1.5.0"
jax = "^0.4.7"
jaxlib = "^0.4.7"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"