-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (61 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
73 lines (61 loc) · 1.82 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm[toml]>=7.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aiorocket2"
description = "Asynchronous Python client for xRocket API."
readme = "README.md"
license = { text = "GNU GPLv3" }
requires-python = ">=3.7"
authors = [
{ name = "RimMirK", email = "me@rimmirk.pp.ua" }
]
keywords = [
"crypto", "telegram", "async", "asynchronous", "payments", "rocket",
"cryptocurrency", "asyncio", "crypto-bot", "cryptopayments", "xrocket",
"aiorocket", "aiorocket"
]
dependencies = [
"aiohttp"
]
version = "2.0.6"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Framework :: AsyncIO",
"Typing :: Typed",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers"
]
[project.urls]
Homepage = "https://github.com/RimMirK/aiorocket2"
Documentation = "https://aiorocket2.rimmirk.pp.ua"
Repository = "https://github.com/RimMirK/aiorocket2"
Issues = "https://github.com/RimMirK/aiorocket2/issues"
[tool.setuptools]
packages = ["aiorocket2"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra -q"
[tool.black]
line-length = 88
target-version = ["py311"]
[tool.isort]
profile = "black"
[tool.mypy]
python_version = 3.7
strict = true
ignore_missing_imports = true
[tool.ruff]
line-length = 88
target-version = "py311"
select = ["E", "F", "I", "UP", "B"]