-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.1 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
[build-system]
requires = [
"setuptools>=70",
"setuptools_scm>=8",
"wheel",
"Cython==3.0.11",
]
build-backend = "setuptools.build_meta"
[project]
name = "pyoptools"
dynamic = ["version"]
description = "Python tools for simulation of optical systems"
authors = [{ name = "Ricardo Amézquita Orozco", email = "[email protected]" }]
license = { file = "LICENSE.txt" }
readme = "README.md"
dependencies = [
"numpy>=1.26.2",
"scipy>=1.5.2",
"imageio>=2.9.0",
"PyYAML>=5.3.1",
"matplotlib>=3.3.1",
"orjson>=3.10.7",
"Pillow>=10.0.1",
"pytest>=8.2.1",
"pytest-cov>=5.0.0",
"pep8>=1.7.1",
"importlib-resources>=3.3.0"
]
[project.optional-dependencies]
test = ["pytest"]
[tool.setuptools]
packages = { find = {} }
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "node-and-timestamp"
[tool.cython]
directive = {language_level = "3"}
[tool.cython-lint]
max-line-length = 88
ignore = ["E741"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]
markers = [
"linting: Python and Cython linting test",
]