-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
108 lines (91 loc) · 2.38 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "cxroots"
dynamic = ["version"]
description = "Find all the roots (zeros) of a complex analytic function within a given contour in the complex plane."
readme = "README.rst"
license = { text = "BSD-3-Clause" }
authors = [
{ name = "Robert Parini", email = "robert.parini@gmail.com" }
]
requires-python = ">=3.10"
dependencies=[
"numpy",
"scipy",
"numpydoc",
"mpmath",
"rich"
]
keywords = ["roots", "zeros", "complex", "analytic", "functions"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only"
]
[project.optional-dependencies]
plot = ["matplotlib"]
[project.urls]
Homepage = "https://rparini.github.io/cxroots/"
Documentation = "https://rparini.github.io/cxroots/"
Repository = "https://github.com/rparini/cxroots"
Issues = "https://github.com/rparini/cxroots/issues"
Changelog = "https://github.com/rparini/cxroots/blob/master/changelog.md"
[tool.setuptools_scm]
version_file = "cxroots/_version.py"
[tool.setuptools]
packages = ["cxroots", "cxroots.tests", "cxroots.contours"]
zip-safe = false
[tool.setuptools.package-data]
"cxroots" = ["py.typed"]
[tool.setuptools.data-files]
"" = ["LICENSE", "README.rst"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]
[tool.ruff]
exclude = [
"build",
"docs",
"docs_src",
"README_resources"
]
[tool.ruff.lint]
select = [
"E",
"W",
"F",
"I",
"N",
"UP",
"SIM",
"YTT",
"S"
]
ignore = ["SIM105"]
[tool.ruff.lint.per-file-ignores]
"**/tests/**" = ["S101"]
[tool.pyright]
include = ["cxroots"]
exclude = [
"cxroots/tests/**",
"**/__pycache__"
]
typeCheckingMode = "strict"
reportMissingTypeStubs = "warning"
reportUnknownVariableType = false
reportUnknownParameterType = false
reportUnknownMemberType = false
reportMissingParameterType = false
reportUnknownArgumentType = false
reportUnknownLambdaType = false
reportImportCycles = false
reportPrivateUsage = false
reportIncompatibleMethodOverride = false
strictDictionaryInference = false
reportUninitializedInstanceVariable = true
reportUnnecessaryTypeIgnoreComment = true