-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
60 lines (56 loc) · 1.62 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
57
58
59
60
[build-system]
requires = ["hatchling", "cffi>=1.17.1"]
build-backend = "hatchling.build"
[project]
name = "poktroll-clients"
version = "0.1.0a1"
description = "Python bindings for the Pocket Network protocol client library (libpoktroll-clients)"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [
{ name = "Bryan White", email = "[email protected]" }
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
dependencies = [
"cffi>=1.17.1",
"atomics>=1.0.2",
"protobuf>=5.29.0"
]
[project.urls]
Homepage = "https://github.com/pokt-network/poktroll-clients-py"
Repository = "https://github.com/pokt-network/poktroll-clients-py.git"
Documentation = "https://github.com/pokt-network/poktroll-clients-py#readme"
[project.optional-dependencies]
test = [
"pytest>=8.3.4",
"pytest-asyncio>=0.24.0",
]
dev = [
"black>=23.0.0",
"isort>=5.0.0",
"mypy>=1.0.0",
"mypy-protobuf>=3.6.0",
"asyncio>=3.4.3",
]
[tool.hatch.build]
sources = ["src"]
include = [
"src/poktroll_clients/**/*.py",
"src/poktroll_clients/**/*.pyi",
"src/poktroll_clients/**/*.h",
"src/poktroll_clients/**/*.pc.in",
"src/poktroll_clients/lib/*"
]