24 lines
502 B
TOML
24 lines
502 B
TOML
[project]
|
|
name = "ic-layout-generate"
|
|
version = "0.1.0"
|
|
description = "IC Layout Generation using Skeleton Extraction and Expansion"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"numpy",
|
|
"opencv-python-headless",
|
|
"scikit-image",
|
|
"networkx",
|
|
"shapely",
|
|
"Pillow",
|
|
"torch",
|
|
"torchvision",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["models", "scripts", "datasets", "train"]
|