-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (36 loc) · 1.09 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "zh-trashbot"
version = "1.2.3"
description = "Züri Trash Bot is a convenient way to query paper and cardboard collection dates for people living in Zürich."
requires-python = ">=3.8"
dependencies = [
"python-telegram-bot==12.8"
]
readme = "README.md"
license = {file = "LICENSE.txt"}
authors = [
{name = "Roman Cattaneo"}
]
maintainers = [
{name = "Roman Cattaneo"}
]
keywords = ["Züri", "telegram", "bot", "waste", "trash", "collection", "recycling"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Topic :: Communications :: Chat",
"Topic :: Home Automation",
"Topic :: Utilities",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
]
[project.urls]
Homepage = "https://cattaneo.coffee/zh_trashbot/"
Repository = "https://github.com/romanc/zh_trashbot"
Issues = "https://github.com/romanc/zh_trashbot/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/zh_trashbot"]