-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools-scm>=6.2", "hwcomponents"]
build-backend = "setuptools.build_meta"
[project]
name = "hwcomponents_library"
dynamic = ["version"]
description = "A library of hardware components for energy estimation."
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [
{name = "Tanner Andrulis", email = "Andrulis@Mit.edu"}
]
keywords = ["hardware", "components", "energy", "estimation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
]
dependencies = [
"hwcomponents",
"hwcomponents-cacti",
]
[tool.setuptools]
packages = {find = {include = ["hwcomponents_library", "hwcomponents_library.*"]}}
include-package-data = true
[tool.setuptools_scm]
write_to = "hwcomponents_library/_version.py"
fallback_version = "1.0"
version_scheme = "hwcomponents._version_scheme:post_version"
local_scheme = "hwcomponents._version_scheme:no_local"