-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
72 lines (63 loc) · 1.6 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
[tool.poetry]
name = "gromp"
version = "1.1.0"
description = "Holistic Python implementation of the public Riot Games Developer API."
authors = [
"Wilhelm Ågren <[email protected]>",
]
license = "MIT"
readme = "README.md"
packages = [{ include = "gromp" }]
homepage = "https://github.com/wilhelmagren/gromp"
repository = "https://github.com/wilhelmagren/gromp"
keywords = [
"python",
"api",
"league-of-legends",
"discord-bot",
"api-wrapper",
"riot-games",
"riot",
"riot-games-api",
"teamfight-tactics",
"legends-of-runeterra",
"valorant",
]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
]
[tool.poetry.urls]
"Homepage" = "https://github.com/wilhelmagren/gromp"
"Bug tracker" = "https://github.com/wilhelmagren/gromp/issues"
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
requests = "^2.31.0"
rsa = "^4.9"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^23.10.1"
pytest = ">=7.4.3,<9.0.0"
ruff = "^0.1.4"
pre-commit = "^3.5.0"
pyclean = "^2.7.5"
pytest-cov = "^4.1.0"
[build-system]
requires = [ "poetry-core" ]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py310"
line-length = 89
ignore = [
"E401", # unused imports
]
[tool.black]
target-version = [ "py310" ]
line-length = 89