forked from tenstorrent/tt-smi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (91 loc) · 2.39 KB
/
Copy pathpyproject.toml
File metadata and controls
103 lines (91 loc) · 2.39 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[project]
name = "tt-smi"
version = "5.3.0"
description = "ncurses based hardware monitoring for Tenstorrent silicon"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{ name = "Sam Bansal", email = "sbansal@tenstorrent.com" }
]
maintainers = [
{ name = "Sam Bansal", email = "sbansal@tenstorrent.com" }
]
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',
'tt_tools_common~=1.6.0',
'pyluwen~=0.8.0',
'tt-umd==0.9.5',
'rich>=13.7.0',
'textual>=0.59.0',
'pre-commit>=3.5.0',
'tomli',
]
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'"
]
optional-dependencies.test = [
"pytest",
]
[tool.pytest.ini_options]
markers = [
"requires_hardware: marks tests as requiring Tenstorrent hardware",
"requires_galaxy: marks tests as requiring Galaxy hardware",
]
[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",
]
[tool.setuptools.exclude-package-data]
"*" = [
'build',
'debian',
'images',
]
[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"
# UV configuration for faster dependency management
[dependency-groups]
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'",
"pytest",
"pre-commit>=3.5.0",
]
# vim: expandtab:ts=2:sw=2:ai