-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
84 lines (71 loc) · 2.25 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
82
83
84
[project]
name = "tt-flash"
version = "3.1.0"
description = "Utility to flash firmware blobs to tt devices"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
authors = [
{ name = "Daniel Rosen", email = "[email protected]" }
]
maintainers = [
{ name = "Daniel Rosen", 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 = [
"pyyaml == 6.0.1",
"pyluwen @ git+https://github.com/tenstorrent/[email protected]#subdirectory=crates/pyluwen",
"tabulate == 0.9.0",
"tomli == 2.0.1; python_version < '3.11'",
# This is a hack to get around the lack of importlib-metadata pre 3.8.
"importlib-metadata >= 1.4.0; python_version < '3.8'",
# This is a hack to get around the lack of the files function in importlib-resources pre 3.9.
"importlib-resources >= 1.3.0; python_version < '3.9'",
"tt-tools-common @ git+https://github.com/tenstorrent/[email protected]",
]
optional-dependencies.dev = [
"black == 24.3.0; python_version > '3.7'",
"black == 23.3.0; python_version == '3.7'"
]
[project.urls]
"Homepage" = "http://tenstorrent.com"
"Bug Reports" = "https://github.com/tenstorrent/tt-flash/issues"
"Source" = "https://github.com/tenstorrent/tt-flash"
[project.scripts]
tt-flash = "tt_flash.main:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = [
".ignored/version.txt",
"data/*/*.yaml"
]
[tool.setuptools.exclude-package-data]
"*" = [
'build',
]
[tool.basedpyright]
pythonVersion = "3.7"
typeCheckingMode = "standard"
[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