-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (50 loc) · 1.5 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
[build-system]
# Defined by PEP 518:
requires = [
# for building Cython extensions
"cython", "numpy", "setuptools", "wheel",
# for version management
"setuptools>=46", "setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"
[project]
name = "nanite_model_sneddon_spher"
authors = [
# In alphabetical order.
{name = "Paul Müller"},
]
maintainers = [
{name = "Paul Müller", email="[email protected]"},
]
description = "Sneddon model for AFM analysis in nanite"
readme = "README.rst"
requires-python = ">=3.10, <4"
keywords = ["atomic force microscopy",
"mechanical phenotyping",
"tissue analysis"]
classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Visualization',
'Intended Audience :: Science/Research',
]
license = {text = "GPL version 3"}
dependencies = [
"lmfit>=1",
"numpy>=1.22.0", # cython build
]
dynamic = ["version"]
[project.urls]
source = "https://github.com/AFM-Analysis/nanite_model_sneddon_spher"
tracker = "https://github.com/AFM-Analysis/nanite/nanite_model_sneddon_spher"
changelog = "https://github.com/AFM-analysis/nanite_model_sneddon_spher/CHANGELOG"
[tool.setuptools_scm]
write_to = "src/nanite_model_sneddon_spher/_version.py"
version_scheme = "post-release"
[tool.cibuildwheel]
# Only build for cpython
build = "cp*"
# Skip musllinux, because dclab users won't be using it
skip = "*musllinux*"
# Only build for 64bit
archs = "auto64"