-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.6 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
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bitpay"
version = "8.0.0"
authors = [
{ name="Antonio Buedo", email="sales-engineering@bitpay.com" },
]
requires-python = ">=3.10"
dependencies = [
"cryptography >= 44.0.0",
"requests >= 2.32.5",
"pydantic == 2.12.5"
]
description = "Accept bitcoin with BitPay"
readme = "README.md"
keywords=["bitcoin", "payments", "crypto", "cash", "ethereum", "online payments"]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[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