-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
85 lines (72 loc) · 1.56 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
80
81
82
83
84
85
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "dont-fret"
description = "Analyze confocal solution smFRET data"
authors = [
{ name = "Jochem Smit", email = "[email protected]" },
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Science/Research",
]
dependencies = [
"numpy>=1.18.0",
"tqdm>=4.64.1",
"typing-extensions>=4.4.0",
"PyYAML>=6.0",
"pandas>=1.5.3",
"dacite",
"numba>=0.56.4",
"polars>=0.20.23",
"phconvert",
"click",
"solara>=1.19.0",
"plotly",
]
dynamic = ["version"]
[project.scripts]
dont-fret = "dont_fret.__main__:cli"
[project.optional-dependencies]
plot = [
"matplotlib",
"kdepy",
]
docs = [
"mkdocs>=1.4.2",
"mkdocstrings[python]>=0.19.1",
"mkdocs-material>=8.5.11",
"pygments>=2.13.0",
"mkdocs-gen-files>=0.4.0",
"mkdocs-literate-nav>=0.5.0",
]
test = [
"pytest>=7.2.0",
"pytest-playwright>=0.3.3",
"pytest-asyncio",
]
[project.urls]
Source = "https://github.com/Jhsmit/dont-fret/"
[tool.hatch.build]
exclude = [
"_versioneer.py"
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "dont_fret/_version.py"
[tool.flake8]
max-line-length = 100
ignore = "D203"
exclude = [".git", "__pycache__", "build", "dist", "docs"]
max-complexity = 10
[tool.black]
line-length = 100
[tool.ruff]
line-length = 100