forked from tenstorrent/tt-tools-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (68 loc) · 1.85 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
[project]
name = "tt-tools-common"
version = "1.4.1"
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',
'psutil==5.9.6',
'pyyaml==6.0.1',
'rich==13.7.0',
'textual==0.42.0',
'requests==2.31.0',
'jsons==1.6.3',
'tqdm==4.66.1',
"pyluwen @ git+https://github.com/tenstorrent/[email protected]#subdirectory=crates/pyluwen",
]
optional-dependencies.dev = [
'black==23.11.0',
'pre-commit==3.5.0',
]
[project.urls]
"Homepage" = "http://tenstorrent.com"
"Bug Reports" = "https://github.com/tenstorrent/tt-tools-common/issues"
"Source" = "https://github.com/tenstorrent/tt-tools-common"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = [
"*.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