forked from PyAbel/PyAbel
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (82 loc) · 2.96 KB
/
pyproject.toml
File metadata and controls
88 lines (82 loc) · 2.96 KB
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
87
88
[project]
name = "PyAbel"
description = "A Python package for forward and inverse Abel transforms"
authors = [
{name = "The PyAbel Team"},
]
maintainers = [
{name = "Daniel D. Hickstein"},
{name = "Mikhail Ryazanov"},
{name = "Stephen Gibson"},
]
requires-python = ">=3.8"
dependencies = [ # lowest tested version (last available in win32 conda)
"numpy>=1.21",
"scipy>=1.7",
]
keywords = [
"Abel transform",
"velocity map imaging",
"VMI",
"tomography",
"axisymmetric",
]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries :: Python Modules",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"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.14",
]
# fields updated automatically in setup.py:
dynamic = [
"version", # __version__ from abel/_version.py
"readme", # actually long_description created from README.rst
"license", # = "MIT", but setuptools<77 can't understand this here
]
[project.urls]
homepage = "https://github.com/PyAbel/PyAbel"
documentation = "https://pyabel.readthedocs.io/en/latest/readme_link.html"
github = "https://github.com/PyAbel/PyAbel.git"
issues = "https://github.com/PyAbel/PyAbel/issues"
changelog = "https://github.com/PyAbel/PyAbel/blob/master/CHANGELOG.rst"
[build-system]
# Building Cython extensions *optionally* cannot be achieved by any standard
# means (see https://github.com/pypa/pip/issues/6144), thus a pure Python
# package is built by default.
# To build with Cython: preinstall setuptools, numpy, cython, and disable build
# isolation ("pip install . --no-build-isolation" or set the environment
# variable PIP_NO_BUILD_ISOLATION=0 before "pip install .").
requires = [ # last version available for Python 3.8 and tested
"setuptools>=75.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["abel*"]
[tool.cibuildwheel]
build-verbosity = 1
# colored output where possible
environment.FORCE_COLOR = 1
# don't try to compile NumPy from source
environment.PIP_ONLY_BINARY = ":all:"
# preinstall packages required to build Cython extensions
before-build = "python -m pip install setuptools numpy cython"
# disable PEP 517 build isolation, instead use already installed packages
build-frontend = { name = "build", args = ["--no-isolation"] }
# (other options are controlled externally)