-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
41 lines (38 loc) · 1.45 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
[project]
name = "mwalib"
description = "A library to work with raw data and metadata from the Murchison Widefield Array (MWA)"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = ["MWA", "radioastronomy"]
authors = [
{name = "Greg Sleap", email = "[email protected]"},
{name = "Christopher H. Jordan", email = "[email protected]"},
{name = "Dev Null", email = "[email protected]"}
]
maintainers = [
{name = "Greg Sleap", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"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",
"Programming Language :: Python :: 3 :: Only"
]
dependencies = ["numpy"]
[project.urls] # Optional
"Homepage" = "https://github.com/MWATelescope/mwalib"
"Bug Reports" = "https://github.com/MWATelescope/mwalib/issues"
"Source" = "https://github.com/MWATelescope/mwalib"
[build-system]
requires = ["setuptools", "wheel", "maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
# "extension-module" tells pyo3 we want to build an extension module (skips linking against libpython.so)
features = ["pyo3/extension-module"]