-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
81 lines (72 loc) · 2.05 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
76
77
78
79
80
81
[project]
name = "tt-smi"
version = "3.0.4"
description = "ncurses based hardware monitoring for Tenstorrent silicon"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
authors = [
{ name = "Sam Bansal", email = "[email protected]" }
]
maintainers = [
{ name = "Sam Bansal", email = "[email protected]" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console :: Curses",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
'distro==1.8.0',
'elasticsearch==8.11.0',
'pydantic>=1.2',
'pyluwen @ git+https://github.com/tenstorrent/[email protected]#subdirectory=crates/pyluwen',
'tt_tools_common @ git+https://github.com/tenstorrent/[email protected]',
'rich==13.7.0',
'textual==0.59.0',
'pre-commit==3.5.0',
'importlib_resources==6.1.1',
'setuptools',
]
optional-dependencies.dev = [
"black == 24.10.0; python_version >= '3.9'",
"black == 24.8.0; python_version == '3.8'",
"black == 23.3.0; python_version == '3.7'"
]
[project.urls]
"Homepage" = "http://tenstorrent.com"
"Bug Reports" = "https://github.com/tenstorrent/tt-smi/issues"
"Source" = "https://github.com/tenstorrent/tt-smi"
[project.scripts]
tt-smi = "tt_smi:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = [
'data/version.txt',
"*.css",
"data/*/*.yaml",
"data/*/*/*.yaml",
]
[tools.setuptools.exclude-package-data]
"*" = [
'build',
]
[tool.setuptools.packages.find]
where = [ ".", ]
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = [
"setuptools>=43.0.0",
"wheel"
]
build-backend = "setuptools.build_meta"
# vim: expandtab:ts=2:sw=2:ai