21 lines
376 B
TOML
21 lines
376 B
TOML
[tool.poetry]
|
|
name = "git-pusher"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["bvn13 <from.github@bvn13.me>"]
|
|
readme = "README.md"
|
|
packages = [
|
|
{ include = "src" }
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
scheduler = "^0.8.7"
|
|
|
|
[tool.poetry.scripts]
|
|
git-pusher = "src.main:start"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|