-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
58 lines (47 loc) · 1.25 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
[build-system]
requires = [
"setuptools>=45", "setuptools_scm[toml]>=6.2", "babel"
]
build-backend = "setuptools.build_meta"
[project]
name = "cryptoadvance.spectrum"
authors = [
{ name="Stepan Snigirev"},
{ name="k9ert"},
]
description = "Implements A Bitcoin Core API which querying an Electrum"
urls = { Homepage = "https://github.com/cryptoadvance/spectrum" }
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
classifiers =[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: Flask',
]
dynamic=["dependencies","version"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools_scm]
write_to = "src/cryptoadvance/spectrum/_version.py"
[tool.pytest.ini_options]
norecursedirs = "tests/bintegration/*"
log_format = "[%(levelname)8s] %(message)s %(name)s (%(filename)s:%(lineno)s)"
markers = [
"slow: mark test as slow.",
"elm: mark test as elementsd dependent",
]
python_files = "tests/test*.py"
filterwarnings = [
"ignore::DeprecationWarning:bitbox02[.*]"
]
[project.optional-dependencies]
test = [
"pytest >=7.1.3",
"pytest-cov[all]",
"mock",
"black",
"pre-commit",
"bdkpython"
]