-
Notifications
You must be signed in to change notification settings - Fork 127
/
pyproject.toml
86 lines (77 loc) · 2.43 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
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["scikit-build-core", "numpy", "setuptools_scm>=8"]
build-backend = "scikit_build_core.build"
[project]
name = "adios2"
dynamic = ["version"]
authors = [
{ name="Caitlin Ross", email="[email protected]" },
{ name="Chuck Atkins", email="[email protected]" },
{ name="Greg S. Eisenhauer", email="[email protected]" },
{ name="Junmin Gu", email="[email protected]" },
{ name="Norbert Podhorszki", email="[email protected]" },
{ name="Ruonan (Jason) Wang", email="[email protected]" },
{ name="Scott Wittenburg", email="[email protected]" },
{ name="Spiros Tsalikis", email="[email protected]" },
{ name="V. A. Bolea Sanchez", email="[email protected]" },
{ name="William F. Godoy", email="[email protected]" },
]
description = "The Adaptable Input Output System version 2"
readme = "ReadMe.md"
requires-python = ">=3.8"
keywords = [
"Python",
"Web",
"Application",
"Framework",
]
classifiers = [
"Programming Language :: C++",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
]
[project.optional-dependencies]
dev = [
'black',
"pip>=21.3",
]
[project.urls]
Homepage = "https://github.com/ornladios/adios2"
Documentation = "https://adios2.readthedocs.io/"
"Bug Tracker" = "https://github.com/ornladios/adios2/issues"
Discussions = "https://github.com/ornladios/ADIOS2/discussions"
Changelog = "https://github.com/ornladios/ADIOS2/releases"
[tool.cibuildwheel]
# Trigger an install of the package, and run a basic test
test-command = "python -m unittest adios2.test.simple_read_write.TestSimpleReadWrite"
[tool.scikit-build]
wheel.packages = ["adios2"]
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
input = "VERSION.TXT"
regex = "^(?P<value>.+?)$"
[tool.scikit-build.cmake.define]
ADIOS2_USE_PIP = "ON"
ADIOS2_USE_Python = "ON"
ADIOS2_USE_Fortran = "OFF"
ADIOS2_USE_MPI = "OFF"
ADIOS2_USE_HDF5 = "OFF"
ADIOS2_USE_HDF5_VOL = "OFF"
ADIOS2_USE_BZip2 = "OFF"
ADIOS2_USE_Blosc2 = "OFF"
ADIOS2_USE_DataMan = "OFF"
ADIOS2_USE_SZ = "OFF"
ADIOS2_USE_ZeroMQ = "OFF"
ADIOS2_USE_ZFP = "OFF"
BUILD_TESTING = "OFF"
ADIOS2_INSTALL_GENERATE_CONFIG = "OFF"
[tool.black]
line-length = 99
target-version = ['py38', 'py39', 'py310']
include = 'python/adios2/.*.py|testing/adios2/python/.*.py'
[tool.pylint]
disable = ['E0401', 'W0102', 'R0904', 'R0913', 'R0401']
good-names = ['io']