-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 1 KB
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 1 KB
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bdkpython"
version = "2.4.0.dev0"
description = "The Python language bindings for the Bitcoin Development Kit"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT OR Apache-2.0"
license-files = ["LICENSE-MIT", "LICENSE-APACHE"]
authors = [
{ name = "Bitcoin Dev Kit Developers", email = "dev@bitcoindevkit.org" }
]
keywords = ["bitcoin", "bdk", "wallet", "ffi", "rust"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/bitcoindevkit"
Repository = "https://github.com/bitcoindevkit/bdk-python"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
bdkpython = ["libbdkffi.*"]
[tool.pytest.ini_options]
pythonpath = ["."]
[dependency-groups]
dev = [
"pytest==7.1.2",
"sphinx>=8.1.3",
"sphinx-rtd-theme>=3.1.0",
]