40 lines
920 B
TOML
40 lines
920 B
TOML
[tool.poetry]
|
|
name = "Coriolis"
|
|
version = "2.5.0"
|
|
description = "Place and Route for semiconductors"
|
|
authors = ["Jean-Paul Chaput <Jean-Paul.Chaput@lip6.fr>"]
|
|
build = "build.py"
|
|
packages = [
|
|
{ include = "Coriolis"}
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.6"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
cmake = ">=3"
|
|
|
|
[tool.poetry.scripts]
|
|
blif2vst = 'Coriolis:blif2vst'
|
|
cx2y = 'Coriolis:cx2y'
|
|
cyclop = 'Corilis:cyclop'
|
|
tutorial = 'Coriolis:tutorial'
|
|
unittests = 'Coriolis:unittests'
|
|
yosys_coriolis = 'Coriolis:yosys_coriolis'
|
|
|
|
[build-system]
|
|
requires = ["poetry-core", "setuptools", "cmake", "patchelf"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.cibuildwheel.linux]
|
|
before-all = '''
|
|
yum install -y \
|
|
qt5-qtbase-devel qt5-qtsvg-devel \
|
|
rapidjson-devel bison flex doxygen bzip2-devel flex-devel \
|
|
boost-devel \
|
|
boost-python boost-filesystem \
|
|
boost-regex boost-wave \
|
|
python3-devel libxml2-devel \
|
|
qwt-devel
|
|
'''
|