2022-11-24 09:53:12 -06:00
|
|
|
[tool.poetry]
|
2022-11-25 20:41:26 -06:00
|
|
|
name = "Coriolis"
|
2022-11-24 09:53:12 -06:00
|
|
|
version = "0.1.0"
|
|
|
|
description = "Place and Route for semiconductors"
|
|
|
|
authors = ["Your Name <you@example.com>"]
|
|
|
|
build = "build.py"
|
2022-11-25 20:41:26 -06:00
|
|
|
packages = [
|
|
|
|
{ include = "Coriolis"}
|
|
|
|
]
|
2022-11-24 09:53:12 -06:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-11-25 20:41:26 -06:00
|
|
|
python = "^3.8"
|
2022-11-24 09:53:12 -06:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
ninja = ">=1.10"
|
|
|
|
cmake = ">=3"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core", "setuptools", "cmake"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|