-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
113 lines (106 loc) · 2.02 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "milkpay.cryptopay"
description = "A lightweight CryptoPay SDK"
readme = "README.rst"
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name = "wakaree", email = "nullmatawasoradesu@gmail.com" },
]
maintainers = [
{ name = "wakaree", email = "nullmatawasoradesu@gmail.com" },
]
keywords = [
"crypto",
"cryptopay",
"cryptobot",
"payments",
"wrapper",
"asyncio",
"client",
]
dependencies = [
"pydantic>=2.4.1,<2.10",
"stollen>=0.2.1,<1.0",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Typing :: Typed",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version"]
[tool.hatch.version]
path = "src/milkpay/cryptopay/__meta__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/milkpay"]
[project.optional-dependencies]
dev = [
"black~=24.8.0",
"ruff~=0.6.1",
"mypy~=1.11.1",
"pre-commit~=3.8.0"
]
[project.urls]
Repository = "https://github.com/py-stollen/milkpay-cryptopay"
Documentation = "https://help.crypt.bot/crypto-pay-api"
[tool.black]
line-length = 99
target-version = ['py311']
exclude = '''
(
\.eggs
| \.git
| \.tox
| \.?venv
| build
| dist
)
'''
[tool.ruff]
target-version = "py311"
line-length = 99
lint.select = [
"C",
"DTZ",
"E",
"F",
"I",
"ICN",
"ISC",
"N",
"PLC",
"PLE",
"Q",
"S",
"T",
"W",
"YTT",
"RET",
"SIM",
"ASYNC",
]
exclude = [
".git",
".venv",
"venv",
"build",
"dist",
"docs",
"tests",
"dev",
"scripts",
"*.egg-info",
]
[tool.mypy]
plugins = ["pydantic.mypy"]
exclude = [".venv", ".idea"]