-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
56 lines (50 loc) · 1.63 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 = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bitpay"
version = "7.0.0"
authors = [
{ name="Antonio Buedo", email="[email protected]" },
]
requires-python = ">=3.9"
dependencies = [
"ecdsa >= 0.19.0",
"requests >= 2.32.3",
"pydantic == 2.9.2"
]
description = "Accept bitcoin with BitPay"
readme = "README.md"
keywords=["bitcoin", "payments", "crypto", "cash", "ethereum", "online payments"]
classifiers = [
"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",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Office/Business :: Financial",
]
[project.urls]
"Homepage" = "https://github.com/bitpay/python-bitpay-client"
"Bug Tracker" = "https://github.com/bitpay/python-bitpay-client/issues"
[project.optional-dependencies]
dev = ["black", "pytest", "pytest-mock", "mypy", "pytest-mypy-plugins", "pytest-cov"]
[tool.setuptools]
package-dir={""= "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.mypy]
disallow_untyped_defs = true
ignore_missing_imports = true
no_implicit_optional = true
check_untyped_defs = true
show_error_codes = true
warn_unused_ignores = true