-
Notifications
You must be signed in to change notification settings - Fork 69
/
pyproject.toml
48 lines (43 loc) · 1.02 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
[build-system]
requires = [
"setuptools==69.5.1",
"setuptools-scm==7.1.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
# To change to eager, or something similar
name = "metal_libs"
authors = [
{name = "Tenstorrent"},
{email = "info@tenstorrent.com"},
]
dependencies = [
"pyyaml>=5.4",
"numpy>=1.24.4,<2",
"loguru==0.6.0",
"toolz==0.12.0",
"matplotlib==3.7.1",
"Pillow==10.3.0",
"jupyterlab==4.2.5",
"ipywidgets==8.1.1",
# extra index required https://download.pytorch.org/whl/cpu
"torch==2.2.1+cpu",
"networkx==3.1",
"graphviz==0.20.3",
"bokeh==3.1.1",
# profiler
"click==8.1.7",
"dash==2.15.0",
"pandas==2.0.3",
"plotly==5.18.0",
"seaborn==0.13.2",
]
requires-python = ">=3.8"
description = "General compute framework for Tenstorrent devices"
dynamic = ["version"]
[tool.black]
line-length = 120
include = '^.*(ttnn|tests/scripts|tests/ttnn|tests/tt_eager/python_api_testing|tt_eager/tt_lib|tests/scripts|models/demos|infra|.github)/.*\.py$'
[tool.ruff]
line-length = 120