-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
72 lines (65 loc) · 1.98 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.mypy]
plugins = ["pydantic.mypy"]
mypy_path = "./"
files = ["aiosu"]
disallow_untyped_defs = true
disallow_any_unimported = true
no_implicit_optional = true
check_untyped_defs = true
warn_unused_ignores = true
show_error_codes = true
[tool.isort]
add_imports = ["from __future__ import annotations"]
force_single_line = true
profile = "black"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.poetry]
name = "aiosu"
version = "2.3.1"
description = "Simple and fast osu! API v1 and v2 library"
authors = ["Nice Aesthetics <[email protected]>"]
license = "GPLv3+"
readme = "README.rst"
repository = "https://github.com/NiceAesth/aiosu"
documentation = "https://aiosu.readthedocs.io/"
keywords = ["osu!", "osu", "api"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.9"
aiohttp = "^3.8.3"
aiolimiter = "^1.0.0"
emojiflags = "^0.1.1"
orjson = "^3.8.3"
pydantic = "^2.0.3"
pytest = { version = "^8.0.0", optional = true }
pytest-asyncio = { version = "^0.24.0", optional = true }
pytest-mock = { version = "^3.10.0", optional = true }
toml = { version = "^0.10.2", optional = true }
sphinx = { version = "^7.0.0", optional = true }
furo = { version = "^2024.0.0", optional = true }
types-toml = { version = "^0.10.8.1", optional = true }
pyjwt = "^2.6.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-asyncio = "^0.24.0"
pytest-mock = "^3.10.0"
mypy = "^1.0"
toml = "^0.10.2"
types-toml = "^0.10.8.1"
sphinx = "^7.0.0"
furo = "^2024.0.0"
pytest-cov = "^6.0.0"
black = { version = "^24.0.0", allow-prereleases = true }
pre-commit = "^4.0.0"
python-dotenv = "^1.0.0"
[tool.poetry.extras]
test = ["pytest", "pytest-asyncio", "pytest-mock", "toml", "types-toml"]
docs = ["Sphinx", "furo", "toml"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"