/
urusai
/
code_sample
Обзор
Документация
Войти
/
urusai
/
code_sample
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
pyproject.toml
33 строки
692 B
nick
init
30 сен 2024, 16:12
30 сен 2024, 16:12
c68451c
Код
Авторство
О чём код?
[tool.poetry] name = "sample" version = "0.0.1" description = "" authors = [""] [tool.poetry.dependencies] python = "^3.11.2" [tool.poetry.dev-dependencies] pylama = {extras=["pylint"], version="^8.4.1"} [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.isort] line_length = 89 multi_line_output = 3 length_sort = true include_trailing_comma = true force_grid_wrap = 0 use_parentheses = true ensure_newline_before_comments = true skip_glob = ["**/migrations/*",] [tool.pytest.ini_options] addopts = "-scoped" asyncio_mode = "auto" pythonpath = [ "src" ] filterwarnings = ["ignore::DeprecationWarning", "ignore::sqlalchemy.exc.SAWarning"]