-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.41 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
[build-system]
requires = ["setuptools", "pip", "build", "wheel", "bump2version", "maturin>=1,<2"]
build-backend = "maturin"
[project]
name = "eigs"
version = "0.0.3"
authors = [
{ name = "Floris Laporte", email = "[email protected]" },
]
description = "An efficient complex eigensolver written in Rust."
requires-python = ">=3.9"
keywords = [
"eigenvalues",
"eigenvectors",
"eigenmodes",
"eigs",
]
license = { text = "LGPL-2.1-only" }
readme = "README.md"
classifiers = [
#"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"numpy",
"scipy",
]
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
[tool.pyright]
reportPrivateImportUsage = false
[tool.cibuildwheel]
build = ["*-manylinux_x86_64"] #, "*-win_amd64"] #, "*-macosx_x86_64"]
manylinux-x86_64-image = "flaport/manylinux2014_x86_64"
[tool.cibuildwheel.linux]
before-build = []
environment = {PATH="$HOME/.cargo/bin:$PATH"}
[tool.cibuildwheel.windows]
before-build = []
[tool.cibuildwheel.macos]
before-build = []