-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 847 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 847 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools-scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "hwcomponents"
dynamic = ["version"]
description = "Hardware Component Area, Energy, Latency, and Leak Power Models"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [
{name = "Tanner Andrulis", email = "andrulis@mit.edu"}
]
keywords = []
classifiers = []
[project.scripts]
hwcomponents = "hwcomponents.hwcomponents:_main"
hwc = "hwcomponents.hwcomponents:_main"
[tool.setuptools]
packages = ["hwcomponents", "hwcomponents.scaling"]
include-package-data = true
zip-safe = true
[tool.setuptools_scm]
write_to = "hwcomponents/_version.py"
fallback_version = "1.0"
version_scheme = "hwcomponents._version_scheme:post_version"
local_scheme = "hwcomponents._version_scheme:no_local"