-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (39 loc) · 1.05 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "condor"
description = "A package for disciplined systems modeling on a deadline"
readme = "README.rst"
dynamic = ["version"]
authors = [
{ name="Benjamin W. L. Margolis", email="benjamin.margolis@nasa.gov" },
{ name="Kenneth R. Lyons", email="kenneth.r.lyons@nasa.gov" },
]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"scipy",
"casadi",
"ndsplines>=0.2.0post0",
]
[project.optional-dependencies]
test = ["pytest"]
docs = ["sphinx", "sphinx-gallery", "matplotlib", "furo"]
[project.urls]
Documentation = "https://nasa.github.io/condor"
[tool.setuptools_scm]
write_to = "src/condor/_version.py"
[tool.ruff.lint]
ignore = [
"F821", # Undefined name ..."
]
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--pdbcls=IPython.terminal.debugger:TerminalPdb"