[build-system] requires = ["setuptools", "wheel"] build-backend = "setuptools.build_meta" [project] name = "monobiome" version = "1.4.0" description = "Monobiome color palette" requires-python = ">=3.12" authors = [ { name="Sam Griesemer", email="git@olog.io" }, ] readme = "README.md" license = "MIT" keywords = [ "tempate-engine", "color-palette", ] classifiers = [ "Programming Language :: Python", "Operating System :: OS Independent", "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", ] dependencies = [ "coloraide>=5.1", "imageio[ffmpeg]>=2.37.2", "ipython>=9.6.0", "kaleido>=1.1.0", "matplotlib>=3.10.7", "nbformat>=5.10.4", "numpy>=2.3.4", "pillow>=12.0.0", "plotly>=6.3.1", "pyqt5>=5.15.11", "scipy>=1.16.2", ] [project.scripts] monobiome = "monobiome.__main__:main" [project.optional-dependencies] dev = [ "ipykernel", ] doc = [ "furo", "myst-parser", "sphinx", "sphinx-togglebutton", "sphinx-autodoc-typehints", ] test = [ "pytest", ] [project.urls] Homepage = "https://doc.olog.io/monobiome" Documentation = "https://doc.olog.io/monobiome" Repository = "https://git.olog.io/olog/monobiome" Issues = "https://git.olog.io/olog/monobiome/issues" [dependency-groups] dev = [ "ipykernel>=7.0.1", ] [tool.setuptools.packages.find] include = ["monobiome*"] [tool.setuptools.package-data] "monobiome" = ["data/*.toml"] [tool.ruff] line-length = 79 [tool.ruff.lint] select = ["ANN", "E", "F", "UP", "B", "SIM", "I", "C4", "PERF"] [tool.ruff.lint.isort] length-sort = true order-by-type = false force-sort-within-sections = false [tool.ruff.lint.per-file-ignores] "tests/**" = ["S101"] "**/__init__.py" = ["F401"] [tool.ruff.format] quote-style = "double" indent-style = "space" docstring-code-format = true