-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
67 lines (62 loc) · 1.73 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "fiddy"
description = "Finite difference methods"
readme = "README.md"
dynamic = ["version", "optional-dependencies"]
license = { file = "LICENSE" }
authors = [
{ name = "The fiddy developers", email = "[email protected]" }
]
keywords = ["finite difference", "gradient check", "difference quotient"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"joblib",
"numpy",
"pandas"
]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/icb-dcm/fiddy"
Documentation = "https://fiddy.readthedocs.io"
Repository = "https://github.com/icb-dcm/fiddy"
"Bug Tracker" = "https://github.com/icb-dcm/fiddy/issues"
[tool.setuptools.packages.find]
include = ["fiddy*"]
[tool.setuptools_scm]
[tool.ruff]
line-length = 79
target-version = "py310"
lint.select = [
"F", # Pyflakes
"I", # isort
# "D", # pydocstyle (PEP 257) FIXME enable later
"S", # flake8-bandit
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"T20", # flake8-print
"W", # pycodestyle Warnings
"E", # pycodestyle Errors
"UP", # pyupgrade
# "ANN", # flakes-annotations
]
lint.ignore = [
"S101", # Use of assert detected
# FIXME
"E501", # Line too long
"T201", # print statement
"F403", # star import
"F401", # unused import
]
[tool.ruff.lint.pydocstyle]
convention = "pep257"