forked from aio-libs/aiomcache
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (38 loc) · 1.24 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
38
39
40
41
42
43
44
45
[build-system]
# https://peps.python.org/pep-0621
# https://setuptools.pypa.io/en/latest/userguide/quickstart.html
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "AioMemcached"
description = "A pure-Python(3.7+) asyncio memcached client, fork from aiomcache."
readme = "README.md"
requires-python = ">=3.7"
license = { text = "BSD" }
authors = [
{ name = "Rex Zhang" },
{ email = "[email protected]" }
]
keywords = ["webdav", "asgi", "asyncio"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Framework :: AsyncIO",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/rexzhang/aiomemcached"
repository = "https://github.com/rexzhang/aiomemcached"
changelog = "https://github.com/rexzhang/aiomemcached/blob/main/CHANGES.md"
[tool.setuptools]
packages = ["aiomemcached"]
[tool.setuptools.dynamic]
version = { attr = "aiomemcached.__version__" }
[tool.pytest.ini_options]
pythonpath = "."
asyncio_mode = "auto"
addopts = "--cov=aiomemcached --cov-report html"
[tool.isort]
profile = "black"