-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.26 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
[build-system]
requires = [
# for version management
"setuptools>=45", "setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"
[project]
name = "afmformats"
description = "reading common AFM file formats"
authors = [
{name="Paul Müller", email="dev@craban.de"},
{name="Shada Abuhattum"},
{name="Eoghan O'Connell", email="eoclives@hotmail.com"},
]
dynamic = ["version"]
readme = "README.rst"
license = "MIT"
dependencies=[
"h5py",
"igor2>=0.5.0", # Asylum Research .ibw file format
"jprops", # JPK file format
"numpy>=1.14.0",
]
requires-python=">=3.6, <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"
]
[project.urls]
Repository = "https://github.com/AFM-analysis/afmformats"
Documentation = "https://afmformats.readthedocs.io/en/stable/"
Changelog = "https://github.com/AFM-analysis/afmformats/blob/master/CHANGELOG"
[tool.setuptools]
packages = ["afmformats"]
include-package-data = true
[tool.setuptools_scm]
write_to = "./afmformats/_version.py"
version_scheme = "post-release"