-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
37 lines (32 loc) · 1.25 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "CacheToolsUtils"
version = "10.2"
authors = [ { name = "Fabien Coelho", email = "[email protected]" } ]
description = "Cachetools Utilities"
readme = "README.md"
license = { text = "CC0" }
requires-python = ">= 3.10"
dependencies = [ "cachetools" ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
repository = "https://github.com/zx80/cachetools-utils"
documentation = "https://zx80.github.io/cachetools-utils/"
issues = "https://github.com/zx80/cachetools-utils/issues"
package = "https://pypi.org/project/CacheToolsUtils/"
[tool.setuptools]
py-modules = [ "CacheToolsUtils" ]
[project.optional-dependencies]
dev = [ "mypy", "pyright", "black", "flake8", "ruff", "pytest", "coverage", "pymarkdownlnt", "types-redis", "types-cachetools" ]
doc = [ "sphinx", "sphinx_rtd_theme", "sphinx-autoapi", "sphinx-lint", "myst_parser" ]
crypt = [ "pycryptodome" ]
tests = [ "pymemcache", "redis" ]
pub = [ "build", "wheel", "twine" ]