-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (50 loc) · 1.37 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
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "zmq-anyio"
version = "0.2.4"
description = "Asynchronous API for ZMQ using AnyIO"
readme = "README.md"
authors = [
{name = "David Brochart", email = "david.brochart@gmail.com"},
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Typing :: Typed",
"Topic :: System :: Networking",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">= 3.9"
dependencies = [
"anyio >=4.7.0,<5.0.0",
"anyioutils >=0.4.6",
"pyzmq >=26.0.0,<27.0.0",
]
[project.optional-dependencies]
test = [
"pytest >=8,<9",
"trio >=0.27.0,<0.28",
"mypy",
"ruff",
"coverage[toml] >=7,<8",
]
[project.urls]
Source = "https://github.com/davidbrochart/zmq-anyio"
Issues = "https://github.com/davidbrochart/zmq-anyio/issues"
[tool.hatch.build.targets.wheel]
ignore-vcs = true
packages = ["src/zmq_anyio"]
[tool.coverage.run]
source = ["zmq_anyio", "tests"]
[tool.coverage.report]
show_missing = true