-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (33 loc) · 1.13 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
[build-system]
requires = [ "poetry-core",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "sendou-py"
version = "1.2.12"
description = "An async Python library for Sendou.ink"
authors = [ "Vincent Lee <[email protected]>",]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/IPLSplatoon/sendou.py/"
repository = "https://github.com/IPLSplatoon/sendou.py/"
documentation = "https://sendou.opensource.iplabs.work/"
keywords = [ "splatoon", "sendou.ink",]
classifiers = [ "Topic :: Software Development :: Libraries :: Python Modules", "Development Status :: 4 - Beta", "Framework :: AsyncIO",]
[[tool.poetry.packages]]
include = "sendou"
[tool.poetry.dependencies]
python = "^3.10"
python-dateutil = "^2.8.2"
aiohttp-client-cache = "^0.12.0"
[tool.sendou-py.source]
schema_commit = "5719fa2676f2430f533df61414afffa6940b7b34"
schema_path = "app/features/api-public/schema.ts"
[tool.pytest.ini_options]
addopts = [ "--import-mode=importlib",]
testpaths = [ "tests",]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
asyncio = "^3.4.3"
toml = "^0.10.2"
[tool.poetry.group.ci.dependencies]
pytest-md-report = "^0.6.2"