-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (57 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
69 lines (57 loc) · 1.69 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
[project]
authors = [
# In alphabetical order
{ name = "Paul Müller", email = "dev@craban.de" },
{ name = "Thomas Bischof" },
]
description = "Scientific tool for fitting correlation curves on a logarithmic plot."
name = "pycorrfit"
readme = "README.rst"
license = "GPL-2.0-only"
requires-python = ">=3.11, <4"
dynamic = ["version"]
dependencies = [
"lmfit >= 0.9.2",
"numpy >= 1.14.2",
"pyyaml >= 3.12",
"scipy >= 1.0.1",
"ptufile >= 2025.12.12",
"looseversion >= 1.3.0",
]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
"Intended Audience :: Science/Research",
]
keywords = ["fluorescence correlation spectroscopy (FCS)"]
[project.urls]
repository = "https://github.com/FCS-analysis/PyCorrFit"
[project.optional-dependencies]
test = ["pytest", "urllib3", "ruff", "ty", "codespell"]
# Graphical User Interface (pip install pycorrfit[GUI])
GUI = [
"matplotlib >= 2.2.2",
"sympy >= 1.1.1",
"simplejson", # for updates
"wxPython >= 4.0.1",
]
[project.gui-scripts]
pycorrfit = "pycorrfit.gui.main:Main"
[build-system]
requires = ["setuptools>=80", "setuptools-scm>=9"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
root = "."
version_file = "pycorrfit/_version.py"
version_scheme = "post-release"
[tool.setuptools.package-data]
pycorrfit_doc = ["CHANGELOG", "doc/PyCorrFit_doc.pdf"]
[tool.ruff]
exclude = ["docs", "pycorrfit", "tests"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B"]
[tool.ty.src]
exclude = ["docs", "pycorrfit", "tests", "setup.py"]
[tool.codespell]
skip = "./CHANGELOG,./build*,./*egg-info,./doc*,./examples,./pycorrfit,./setup.py,./tests"