-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (47 loc) · 1.43 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
combine_as_imports = true
default_section = "THIRDPARTY"
force_grid_wrap = 0
force_sort_within_sections = true
forced_separate = "tests"
include_trailing_comma = true
indent = " "
known_first_party = "aquahawk_client,tests"
line_length = 88
multi_line_output = 3
not_skip = "__init__.py"
sections = "FUTURE,STDLIB,INBETWEENS,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
use_parentheses = true
[tool.poetry]
name = "aquahawk_client"
version = "0.0.1-rc1"
description = "A Python3, async-friendly client library for AquaHawk"
readme = "README.md"
authors = ["Andy Blyler <[email protected]>"]
license = "MIT"
repository = "https://github.com/ablyler/aquahawk_client"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[tool.poetry.dependencies]
aiohttp = ">=3.8.0"
python = ">=3.11.0,<4.0"
dataclasses-json = ">=0.6.1"
[tool.poetry.dev-dependencies]
pre-commit = "^4.0.1"
pytest = "^8.3.3"
pytest-aiohttp = "*"
pytest-cov = "^5.0.0"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = [ "tests" ]