-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
87 lines (76 loc) · 2.26 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
86
87
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "impedancefitter"
version = "2.0.11"
description = "Library for fitting impedance data to equivalent circuit models."
readme = "README.md"
license = { text = "GPL-3.0-only" }
authors = [
{ name = "Leonard Thiele", email = "leonard.thiele@uni-rostock.de" },
{ name = "Julius Zimmermann", email = "julius.zimmermann@uni-rostock.de" }
]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent"
]
dependencies = [
"pyyaml>=6.0.1",
"pandas[excel]>=1.0.1",
"openturns>=1.17",
"numpy>=1.24.4",
"lmfit==1.3.2",
"numdifftools>=0.9.39",
"corner>=2.0.1",
"emcee>=3.0.1",
"tqdm>=4.42.1",
"pyparsing",
"schemdraw>=0.19",
"packaging"]
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
dev = ["ruff", "pre-commit"]
docs = ["sphinx",
"jupyter_sphinx",
"sphinx-rtd-theme"]
all = ["impedancefitter[test, dev, docs]"]
[project.urls]
homepage = "https://impedancefitter.readthedocs.io/en/latest/"
repository = "https://github.com/j-zimmermann/impedancefitter"
[tool.ruff]
extend-select = ["E", # style errors
"W", # style warnings
"F", # flakes
"D", # pydocstyle
"C",# flake8-comprehensions
"I", #isort
"Q", # quotes
"U" #pyupgrade
]
extend-ignore = [
"D100", # Missing docstring in public module
"D107", # Missing docstring in __init__
"D203", # 1 blank line required before class docstring
"D205", # 1 blank line required between summary line and description
"D212", # Multi-line docstring summary should start at the first line
"D213", # Multi-line docstring summary should start at the second line
"D401", # First line should be in imperative mood
"D413", # Missing blank line after last section
"D416", # Section name should end with a colon
]
# Files that should not be in the release
[tool.check-manifest]
ignore = [
".pre-commit-config.yaml",
".ruff_cache/**/*",
"setup.py",
"tests/**/*",
"introduction/*",
"joss/*",
]