-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
94 lines (88 loc) · 1.91 KB
/
pyproject.toml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[project]
name = "coriolis-eda"
dynamic = ["version"]
description = "Place and Route for semiconductors"
authors = [ { name = "Coriolis EDA Contributers" } ]
readme = "README.rst"
homepage = "https://github.com/lip6/coriolis"
repository = "https://github.com/lip6/coriolis"
requires-python = ">= 3.8.1"
packages = [
{ include = "coriolis"},
]
include = [
"COPYRIGHT.rst",
"LICENSE.rst",
"README.rst",
"SUPPORT.rst",
"Seabreeze",
"anabatic",
"bootstrap",
"bora",
"builder.py",
"coloquinte",
"crlcore",
"cumulus",
"etesian",
"flute",
"foehn",
"hurricane",
"ispd",
"karakaze",
"katana",
"lefdef",
"oroshi",
"pdm.lock",
"pyproject.toml",
"stratus1",
"tramontana",
"tutorial",
"unicorn",
"unittests",
]
[build-system]
requires = ["setuptools", "pdm-backend", "meson @ git+https://github.com/robtaylor/meson@homebrew-fixes", "ninja", "meson-python == 0.13.2", "cmake", "dunamai"]
build-backend = "mesonpy"
[tool.cibuildwheel.linux]
skip = ["cp36-*", "cp37-*", "pp*"]
build-frontend = "build"
before-all = '''
yum -y install epel-release
yum repolist
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 \
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 ../..
'''
[tool.pdm.version]
source = "scm"
getter = "_build_utils.version"
[tool.pdm.dev-dependencies]
doc = [
"pelican",
"pelican-pdf",
"docutils >= 0.20",
"markupsafe >= 2.0.0"
]
dev = [
"meson @ git+https://github.com/robtaylor/meson@homebrew-fixes",
"ninja",
"meson-python == 0.13.2",
"cmake",
"dunamai"
]
test = [
"pytest>=7.4.2",
]
[tool.pdm]
plugins = [
"pdm-dotenv",
]