didppy 0.10.0

Python interface for Dynamic Programming Description Language (DyPDL) and DyPDL solvers.
Documentation
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[project]
name = "didppy"
authors = [
    { name = "Ryo Kuroiwa", email = "kuroiwa@nii.ac.jp" },
    { name = "Yuxiao (Jasper) Chen", email = "yuxiao.chen@mail.utoronto.ca" },
    { name = "Anubhav Singh", email = "anubhav.singh@utoronto.ca" },
]
version = "0.9.0"
requires-python = ">=3.7"
classifiers = [
    "Programming Language :: Rust",
    "Programming Language :: Python :: Implementation :: CPython",
    "Programming Language :: Python :: Implementation :: PyPy",
]

[project.optional-dependencies]
dev = ["pytest", "flake8", "black", "isort"]

[tool.isort]
profile = 'black'
src_paths = ['tests', 'examples']
line_length = 88

[tool.flake8]
max-line-length = 88

[tool.pytest.ini_options]
addopts = ["--import-mode=importlib", "--color=yes"]