msys2-autobuild/pyproject.toml
Christoph Reiter 0d25d51a04 Convert the script to a Python package
It can now be invoked via `python -m msys2_autobuild` or
by installing it, which adds a "msys2-autobuild" script.

This is a first step towards splitting up the code.

The HTTP cache is now stored in the working directory
instead of the source directory.
2023-03-21 11:34:39 +01:00

26 lines
543 B
TOML

[tool.poetry]
name = "msys2-autobuild"
version = "0.1.0"
description = ""
authors = ["Christoph Reiter <reiter.christoph@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.8.1"
PyGithub = "^1.58.0"
tabulate = "^0.9.0"
requests = "^2.28.1"
requests-cache = "^1.0.0"
[tool.poetry.dev-dependencies]
mypy = "1.1.1"
flake8 = "^6.0.0"
types-tabulate = "^0.9.0.0"
types-requests = "^2.25.0"
[tool.poetry.scripts]
msys2-autobuild = 'msys2_autobuild:run'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"