-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
63 lines (58 loc) · 1.77 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
[build-system]
requires = [
# for version management
"setuptools>=45", "setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"
[project]
name = "nanite"
authors = [
# In alphabetical order.
{name = "Paul Müller"},
{name = "Shada Abuhattum"},
]
maintainers = [
{name = "Paul Müller", email="dev@craban.de"},
]
description = "Loading, fitting, and rating AFM force-distance data"
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 = [
"afmformats>=0.16.4",
"h5py>=3.9.0",
"lmfit>=1",
"numpy>=1.22.0", # cython build
"scikit-learn>=0.23.0", # rating tests
"scipy>=1.10.0", # scipy memory leak vulnerability
]
dynamic = ["version"]
[project.optional-dependencies]
CLI = ["appdirs",
"matplotlib>=2.2.2",
"tifffile>=0.15.0",
]
ACA = ["nanite_model_sneddon_spher>=1.0,<2.0"]
ALL = ["nanite[CLI,ACA]"]
[project.scripts]
nanite-setup-profile = "nanite.cli:setup_profile [CLI]"
nanite-rate = "nanite.cli:rate [CLI]"
nanite-fit = "nanite.cli:fit [CLI]"
nanite-generate-training-set = "nanite.cli:generate_training_set [CLI]"
[project.urls]
source = "https://github.com/AFM-Analysis/nanite"
tracker = "https://github.com/AFM-Analysis/nanite/issues"
documentation = "https://nanite.readthedocs.io/en/stable/"
changelog = "https://nanite.readthedocs.io/en/stable/sec_changelog.html"
[tool.setuptools_scm]
write_to = "src/nanite/_version.py"
version_scheme = "post-release"