coriolis/pyproject.toml

101 lines
2.2 KiB
TOML
Raw Normal View History

2022-11-24 09:53:12 -06:00
[tool.poetry]
2023-08-09 08:56:21 -05:00
name = "coriolis-eda"
2023-01-09 10:43:48 -06:00
version = "0.0.0"
2022-11-24 09:53:12 -06:00
description = "Place and Route for semiconductors"
authors = ["Jean-Paul Chaput <Jean-Paul.Chaput@lip6.fr>"]
2023-01-09 07:37:08 -06:00
readme = "README.rst"
homepage = "https://github.com/lip6/coriolis"
repository = "https://github.com/lip6/coriolis"
packages = [
{ include = "coriolis"},
]
include = [
"COPYRIGHT.rst",
"LICENSE.rst",
"README.rst",
"SUPPORT.rst",
"Seabreeze",
"anabatic",
"bootstrap",
"bora",
"builder.py",
"coloquinte",
"crlcore",
"cumulus",
"equinox",
"etesian",
"flute",
"foehn",
"hurricane",
"ispd",
"karakaze",
"katana",
"lefdef",
"oroshi",
"poetry.lock",
"pyproject.toml",
"solstice",
"stratus1",
"tramontana",
"tutorial",
"unicorn",
"unittests",
]
2022-11-24 09:53:12 -06:00
2023-01-09 10:43:48 -06:00
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
2023-08-09 09:37:52 -05:00
style = "pep440"
format-jinja = """
{%- if distance == 0 -%}
{{ serialize_pep440(base, stage, revision) }}
{%- else -%}
{{ serialize_pep440(bump_version(base), stage="a", revision=distance) }}
{%- endif -%}
"""
2023-01-09 10:43:48 -06:00
2022-11-24 09:53:12 -06:00
[tool.poetry.dependencies]
2022-12-13 21:24:07 -06:00
python = "^3.8"
find-libpython = "^0.3.0"
2022-11-24 09:53:12 -06:00
[tool.poetry.dev-dependencies]
cmake = ">=3"
2022-12-22 04:57:53 -06:00
ninja = "^1.11.1"
2022-11-24 09:53:12 -06:00
[tool.poetry.group.doc.dependencies]
pelican = ">= 4.5.0"
[tool.poetry.build]
script = "builder.py"
generate-setup-file = true
2022-12-01 19:04:37 -06:00
[tool.poetry.scripts]
blif2vst = 'coriolis:blif2vst'
tutorial = 'coriolis:tutorial'
unittests = 'coriolis:unittests'
yosys_coriolis = 'coriolis:yosys_coriolis'
2022-12-01 19:04:37 -06:00
2022-11-24 09:53:12 -06:00
[build-system]
2023-01-09 10:43:48 -06:00
requires = ["poetry-core", "setuptools", "cmake", "ninja", "patchelf", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
2022-11-24 09:53:12 -06:00
[tool.cibuildwheel.linux]
2022-12-13 21:24:07 -06:00
skip = ["cp36-*", "cp37-*", "pp*"]
build-frontend = "build"
2022-12-09 09:51:19 -06:00
before-all = '''
2022-12-22 08:33:54 -06:00
yum -y install epel-release
yum repolist
2022-12-09 09:51:19 -06:00
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 \
python36-devel libxml2-devel \
2023-07-15 07:28:43 -05:00
qwt-devel \
ccache \
eigen3-devel \
wget
wget http://lemon.cs.elte.hu/pub/sources/lemon-1.3.1.tar.gz; tar -xzf lemon-1.3.1.tar.gz; cd lemon-1.3.1; mkdir build; cd build; cmake ..; make install; cd ../..
2022-12-09 09:51:19 -06:00
'''