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