-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (35 loc) · 862 Bytes
/
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
[build-system]
requires = [
"setuptools>=42",
"pybind11>=2.10.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "pymlgymbo"
version = "0.0.0"
authors = [
{ name="Hideaki Takahashi" },
]
description = "Gradient-based Symbolic Execution Tool"
readme = "README.md"
license = {file = "LICENSE"}
dependencies = [
'scikit-learn',
'pybind11',
'pybind11[global]',
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
xfail_strict = true
testpaths = ["tests"]
[tool.cibuildwheel]
test-command = "pytest {project}/tests"
test-extras = ["test"]
test-skip = ["*universal2:arm64"]
# Setuptools bug causes collision between pypy and cpython artifacts
before-build = "rm -rf {project}/build"