File size: 522 Bytes
aa677e3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "edgeeda"
version = "0.1.0"
description = "Agentic multi-fidelity PPA tuning for OpenROAD-flow-scripts (ORFS)"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
  "pyyaml>=6.0",
  "numpy>=1.23",
  "pandas>=2.0",
  "tqdm>=4.66",
  "scikit-learn>=1.3",
]

[project.scripts]
edgeeda = "edgeeda.cli:main"

[tool.setuptools]
package-dir = {"" = "src"}

[tool.setuptools.packages.find]
where = ["src"]