-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.17 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
[build-system]
requires = [
"cython >= 3.0.2",
"meson >= 1.2.3",
"meson-python >= 0.14.0",
"numpy",
]
build-backend = "mesonpy"
[project]
name = "flacarray"
version = "0.2.4"
description = "FLAC Compression of Arrays"
readme = "README.md"
maintainers = [
{ name = "Theodore Kisner", email = "tskisner.public@gmail.com" },
]
requires-python = ">=3.9"
dependencies = [
"numpy",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
]
[project.scripts]
flacarray_benchmark = "flacarray.scripts:bench_cli"
[project.urls]
"Documentation" = "https://hpc4cmb.github.io/flacarray/"
"Source" = "https://github.com/hpc4cmb/flacarray/"
"Issue Tracker" = "https://github.com/hpc4cmb/flacarray/issues"
[tool.meson-python.args]
compile = ['-j2']