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
|
[project]
name = "cycler"
dynamic = ["version"]
description = "Composable style cycles"
authors = [
{name = "Thomas A Caswell", email = "matplotlib-users@python.org"},
]
readme = "README.rst"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"License :: OSI Approved :: BSD License",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
keywords = ["cycle kwargs"]
[project.urls]
homepage = "https://matplotlib.org/cycler/"
repository = "https://github.com/matplotlib/cycler"
[project.optional-dependencies]
docs = [
"ipython",
"matplotlib",
"numpydoc",
"sphinx",
]
tests = [
"pytest",
"pytest-cov",
"pytest-xdist",
]
[tool.setuptools]
packages = ["cycler"]
[tool.setuptools.dynamic]
version = {attr = "cycler.__version__"}
[tool.setuptools.package-data]
cycler = ["py.typed"]
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
|