-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
75 lines (64 loc) · 2.29 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
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=7",
"ninja>=1.10; sys_platform != 'win32'",
"cmake>=3.21",
]
build-backend = "setuptools.build_meta"
[project]
name = "mnt.pyfiction"
version = "0.6.5"
description = "Design Automation for Field-coupled Nanotechnologies"
readme = "README.md"
authors = [
{ name = "Marcel Walter", email = "[email protected]" },
{ name = "Jan Drewniok", email = "[email protected]" },
{ name = "Simon Hofmann", email = "[email protected]" },
{ name = "Benjamin Hien", email = "[email protected]" }
]
keywords = ["MNT", "fiction", "nanotechnology", "FCN", "QCA", "NML", "SiDB", "design automation", "placement", "routing", "clocking", "simulation"]
license = { file = "LICENSE.txt" }
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: C++',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
]
requires-python = ">=3.8"
[project.urls]
Source = 'https://github.com/cda-tum/fiction'
Tracker = 'https://github.com/cda-tum/fiction/issues'
Documentation = 'https://fiction.readthedocs.io/en/latest/'
Research = 'https://www.cda.cit.tum.de/research/fcn/'
[project.optional-dependencies]
test = [
"python-dotenv==0.21.1"
]
[tool.setuptools.packages.find]
include = ["bindings/pyfiction.*"]
[tool.setuptools_scm]
[tool.cibuildwheel]
build = "cp3*"
archs = "auto64"
skip = "*-musllinux*"
test-skip = "*-macosx_arm64"
test-command = "python -m unittest discover --start-directory bindings/pyfiction/ --verbose"
environment = { z3 = "ON" }
build-frontend = "pip"
manylinux-x86_64-image = "manylinux_2_28"
[tool.cibuildwheel.linux]
environment = { Z3_ROOT = "/opt/python/cp39-cp39/lib/python3.9/site-packages/z3", z3 = "ON" }
[tool.cibuildwheel.macos]
archs = "x86_64"
environment = { MACOSX_DEPLOYMENT_TARGET = "10.15", z3 = "ON" }
[tool.cibuildwheel.windows]
before-build = "pip install delvewheel"
repair-wheel-command = "delvewheel repair -v -w {dest_dir} {wheel}"