-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.22 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
[project]
name = "bungio"
version = "1.2.0"
description = "A destiny 2 / bungie api wrapper"
keywords = ["asyncio", "destiny", "destiny 2", "bungie", "api"]
authors = [{ name = "Daniel J" }]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">= 3.10"
dependencies = [
"aiohttp~=3.8",
"attrs~=22.1",
"sqlalchemy[aiosqlite]~=1.4",
]
[project.optional-dependencies]
speedups = [
"orjson~=3.6",
"brotli~=1.0",
"charset-normalizer~=3.3",
]
cache = [
"aiohttp-client-cache~=0.7",
]
docs = [
"mkdocstrings[python]~=0.25",
"mkdocs-material~=9.5",
"mkdocs-awesome-pages-plugin~=2.9",
"mkdocs-autorefs~=1.0",
]
test = [
"pytest~=7.1",
"pytest-asyncio~=0.18",
]
dev = [
"ruff~=0.5",
"pre-commit~=3.7",
]
[tool.ruff]
line-length = 120
fix = true
[tool.ruff.lint]
# Allow applying all unsafe fixes in the `E` rules and `F401` without the `--unsafe-fixes` flag
extend-safe-fixes = ["E", "F401"]
extend-select = ["I"]
extend-ignore = ["F403"]
exclude = ["__init__.py"]
[project.urls]
Repository = "https://github.com/Kigstn/BungIO"
Documentation = "https://bungio.readthedocs.io/en/latest/"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"