mirror of
https://github.com/revanced/revanced-api.git
synced 2025-05-09 02:44:30 +02:00

* feat: sanic framework settings * feat: initial implementation * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * refactor: backend changes * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * fix: docstrings out of place * feat: more gh endpoints * ci: fix pre-commit issues * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * feat: app info * ci: merge CI and fix triggers * chore: bump deps * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * fix: typing issues * chore: deps * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * refactor: clean up returns * ci: spread jobs correctly * ci: move to quodana * ci: fix issues with python modules * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * chore: pycharm config * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * refactor: improve code quality * feat: better README * ci: add quodana baseline config * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * ci: fix quodana config * ci: more qodana stuff * ci: revert qodana changes * ci: python interpreter detection is broken * feat: tests * ci: testing * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * ci: fix workflow names * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * chore: add deps * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * test: more tests * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * feat: /tools compat * feat: donations endpoint * feat: teams endpoint * fix: lock pydantic version * chore: deps * ci: docker builds * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * ci: remove coverage action and others * ci: pre-commit fixes --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
43 lines
1010 B
TOML
43 lines
1010 B
TOML
[tool.poetry]
|
|
name = "revanced-api"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Alexandre Teles <alexandre.teles@ufba.br>"]
|
|
license = "AGPLv3"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
aiohttp = {version = ">=3.8.4", extras = ["speedups"]}
|
|
sanic = {version = ">=23.3.0", extras = ["ext", "http3"]}
|
|
ujson = ">=5.7.0"
|
|
asyncstdlib = "3.10.6"
|
|
pydantic = "^1.10.11"
|
|
aioquic = ">=0.9.20"
|
|
cytoolz = ">=0.12.1"
|
|
beautifulsoup4 = ">=4.12.2"
|
|
setuptools = ">=67.7.2"
|
|
lxml = ">=4.9.2"
|
|
mypy = ">=1.2.0"
|
|
types-ujson = ">=5.7.0.5"
|
|
types-aiofiles = ">=23.1.0.1"
|
|
sanic-testing = ">=23.3.0"
|
|
pytest-asyncio = ">=0.21.0"
|
|
types-beautifulsoup4 = ">=4.12.0.5"
|
|
pytest-md = ">=0.2.0"
|
|
pytest-emoji = ">=0.2.0"
|
|
coverage = ">=7.2.5"
|
|
pytest-cov = "^4.0.0"
|
|
pytest = ">=7.4.0"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
filterwarnings = [
|
|
"ignore::DeprecationWarning",
|
|
"ignore::pytest.PytestCollectionWarning"
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|