-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
79 lines (75 loc) · 1.78 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = [
"setuptools>=47",
"setuptools_scm",
"wheel",
"cmake>=3.18",
]
build-backend = "setuptools.build_meta"
[project]
name = "fastddm"
description = "A Python/C++ library for the analysis of Differential Dynamic Microscopy experiments"
readme = "README.md"
authors = [
{ name = "Enrico Lattuada" },
{ name = "Fabian Krautgasser" },
{ name = "Roberto Cerbino" },
{ email = "cerbino@gmail.com" },
]
maintainers = [
{ name = "Enrico Lattuada", email = "lattuada.enrico@gmail.com" },
]
requires-python = ">=3.8"
dependencies = [
"psutil",
"numpy",
"scipy",
"matplotlib",
"scikit-image",
"tifffile",
"nd2reader",
"pandas",
"lmfit",
]
dynamic = [ "license", "version" ]
keywords = [
"cuda",
"differential-dynamic-microscopy",
"digital-fourier-microscopy",
"gpu",
"image-analysis",
"microscopy",
"python",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Physics",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-regtest",
]
doc = [
"sphinx",
"sphinx-tabs",
"nbsphinx",
"furo",
"ipython",
]
dev = [
"fastddm[test,doc]",
]
[project.urls]
Source = "https://github.com/somexlab/fastddm"
Documentation = "https://fastddm.readthedocs.io"
Issues = "https://github.com/somexlab/fastddm/issues"
Changelog = "https://github.com/somexlab/fastddm/blob/main/CHANGELOG.rst"
[tool.setuptools_scm]