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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project]
name = "colormap"
version = "1.3.0"
description = "Commn utilities to ease development of Python packages"
authors = [
{ "name" = "Thomas Cokelaer", "email" = "thomas.cokelaer@pasteur.fr" },
]
license = "BSD-3-Clause"
readme = "README.rst"
keywords = ["config", "decorators", "development"]
dynamic = ["dependencies", "requires-python"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
]
[project.urls]
Homepage = "https://colormap/dev.readthedocs.io"
Repository = "https://github.com/cokelaer/colormap"
Issues = "https://github.com/cokelaer/colormap/issues"
Documentation = "https://colormap.readthedocs.io"
[tool.poetry.dependencies]
# to keep python3.8, we need this convoluated pins on matplotlbi and numpy
# python 3.8 and python3.12 are quite afar wrt numpy installation.
python = "^3.8,<4"
matplotlib = [
{version = "^3.9.2", python ="^3.12"},
{version = "^3", python ="<3.12"},
]
numpy = [
{version = "^2", python ="^3.10"},
{version = "<2,", python ="<3.10"}
]
importlib_resources = [
{version = ">6", python=">=3.9,<=3.10"}
]
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-cov = "^4.1.0"
pytest-xdist = "^3.5.0"
pytest-mock = "^3.12.0"
pytest-runner = "^6.0.1"
coveralls = "^3.3.1"
flaky = "^3.7.0"
[tool.poetry.group.doc.dependencies]
sphinx = ">3"
sphinx-rtd-theme = "^2.0.0"
sphinx-gallery = "^0.15.0"
|