-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (64 loc) · 1.97 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
[build-system]
requires = ["setuptools","numpy","wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "SILEXlight"
authors = [
{name = "Antoine Legay", email = "antoine.legay@lecnam.net"},
{name = "Luc Laurent", email = "luc.laurent@lecnam.net"},
]
maintainers = [
{name = "Luc Laurent", email = "luc.laurent@lecnam.net"},
]
description = "Basic SILEX library"
requires-python = ">=3.7"
license = {text = "LGPLv3"}
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Fortran",
"Intended Audience :: Education",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Physics"
]
dependencies = [
"numpy", "scipy"
]
dynamic = ["version", "readme"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[project.urls]
homepage = "https://antoinelegay.free.fr"
repository = "https://github.com/luclaurent/SILEX-light"
[project.optional-dependencies]
dev = [
"pylint ~=2.14.0",
"toml ~=0.10.2",
"yapf ~=0.32.0",
]
test = [
"pytest-cov ~=3.0.0",
]
[tool.pytest.ini_options]
addopts = "--cov --cov-report html --cov-report term-missing --cov-fail-under 1"
[tool.coverage.run]
source = ["SILEXlight"]
[tool.cibuildwheel]
test-requires = "pytest"
test-command = "python -m pytest --pyargs SILEXlight.tests"
manylinux-x86_64-image="manylinux2014"
[tool.cibuildwheel.linux]
repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel}"
[[tool.cibuildwheel.overrides]]
select = "cp3{8,9,10,11}-*"
# [tool.setuptools]
# package-dir = {"" = "src"}
# [tool.setuptools.dynamic]
# version = {attr = "SILEX-light.__version__"}
# readme = {file = ["README.md"]}