pyproject update

This commit is contained in:
2024-06-20 11:10:37 +02:00
parent d8deeedfb6
commit fdd212317d

View File

@@ -10,19 +10,19 @@ readme = "README.md"
authors = [{ name = "Benoit Sierro", email = "benoit.sierro@iap.unibe.ch" }] authors = [{ name = "Benoit Sierro", email = "benoit.sierro@iap.unibe.ch" }]
license = { file = "LICENSE" } license = { file = "LICENSE" }
classifiers = [ classifiers = [
"License :: OSI Approved :: MIT", "License :: OSI Approved :: MIT",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
] ]
requires-python = ">=3.11" requires-python = ">=3.11"
keywords = ["nonlinear", "fiber optics", "simulation", "runge-kutta"] keywords = ["nonlinear", "fiber optics", "simulation", "runge-kutta"]
dependencies = [ dependencies = [
"numpy", "numpy",
"scipy>=1.12.0", "scipy>=1.12.0",
"matplotlib", "matplotlib",
"numba", "numba",
"tqdm", "tqdm",
"pydantic", "pydantic",
"pydantic-settings", "pydantic-settings",
] ]
[project.optional-dependencies] [project.optional-dependencies]
@@ -31,7 +31,10 @@ test = ["pytest"]
[tool.ruff] [tool.ruff]
line-length = 100 line-length = 100
ignore = ["E741"]
[tool.ruff.pydocstyle] [tool.ruff.lint]
ignore = ["E741"]
select = ["NPY201"]
[tool.ruff.lint.pydocstyle]
convention = "numpy" convention = "numpy"