-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 989 Bytes
/
Copy pathpyproject.toml
File metadata and controls
51 lines (43 loc) · 989 Bytes
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
[project]
name = "sparrowrpc"
description = "A Multi-Transport Peer-to-Peer bidirectional RPC System and Protocol Engine"
version = "0.1.2"
authors = [
{name = "Rasjid Wilcox", email = "rasjidw@openminddev.net"}
]
readme = "README.md"
license = "MIT OR Apache-2.0"
license-files = [
"LICENSE-MIT",
"LICENSE-APACHE",
]
requires-python = ">=3.8"
classifiers = ["Development Status :: 3 - Alpha"]
dependencies = [
"binarychain",
'backports.strenum; python_version < "3.11"',
]
optional-dependencies.dev = [
"pytest",
"pytest-cov",
"pytest-asyncio",
]
optional-dependencies.websockets = [
"websockets",
]
optional-dependencies.msgpack = [
"msgpack",
]
optional-dependencies.cbor = [
"cbor2",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.coverage.run]
omit = [
"src/sparrowrpc/_template_/*",
]
[tool.pytest.ini_options]
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "module"
asyncio_default_test_loop_scope = "module"