-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.47 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
# IMPORTANT
# * Please adjust GitHub actions to match changes to Python version here.
# * Please make sure that all dependence/version changes made here are reflected
# in the oldest tox task in tox.ini
[build-system]
requires = [
"setuptools>=68.2.2",
"setuptools_scm[toml]>=6.0",
"numpy>=1.22.0",
"cython>=3.0.10",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "surmise"
authors = [
{name = "Matthew Plumlee"},
{name = "Özge Sürer", email = "[email protected]"},
{name = "Stefan M. Wild", email = "[email protected]"},
{name = "Moses Y.-H. Chan", email = "[email protected]"}
]
description = "A modular interface for surrogate models and tools"
license = {file = "LICENSE"}
readme = "README.rst"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = [
'numpy>=1.22.0',
'scipy>=1.9.0',
'dill>=0.3.8'
]
dynamic = ["version"]
[project.optional-dependencies]
scikit-learn = ['scikit-learn>=1.2.0']
all = [
'surmise[scikit-learn]'
]
[project.urls]
repository = "https://github.com/bandframework/surmise"
[tool.setuptools.packages]
find = {}
[tool.setuptools_scm]
write_to = "surmise/_version.py"
[tool.cibuildwheel]
# Skip 32-bit builds
# Disable building PyPy wheels on all platforms
# Disable musllinux
skip = ["*-win32", "*_i686", "*-musllinux*", "pp*"]
before-build = ["git status"]