30 lines
661 B
TOML
30 lines
661 B
TOML
[build-system]
|
|
requires = ["setuptools", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pvv-calendar-bot"
|
|
authors = [
|
|
{name = "Felix Albrigtsen", email = "felix@albrigtsen.it"},
|
|
{name = "Fredrik Robertsen", email = "fredrikrobertsen7@gmail.com"}
|
|
]
|
|
version = "1.0.0"
|
|
description = "PVV Calendar -> Matrix bot"
|
|
requires-python = ">=3.10"
|
|
keywords = []
|
|
license = {text = "MIT"}
|
|
dependencies = [
|
|
"beautifulsoup4",
|
|
"markdown2",
|
|
"matrix-nio",
|
|
"mysql-connector-python",
|
|
"requests"
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
include = ["*"]
|
|
|
|
[project.scripts]
|
|
pvv-calendar-bot = "pvv_calendar_bot:main"
|