-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (29 loc) · 949 Bytes
/
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
[project]
name = "soccerwithyourfriends"
version = "0.1"
description = "Application to manage your FIFA / PES League and present it with a nice website"
readme = "./README.md"
requires-python = ">=3.7"
license = { file="./LICENSE" }
authors = [ { name="Johannes Krattenmacher", email="misc@dev.krateng.ch" } ]
urls.repository = "https://github.com/krateng/soccerwithyourfriends"
urls.documentation = "https://github.com/krateng/soccerwithyourfriends"
urls.homepage = "https://github.com/krateng/soccerwithyourfriends"
keywords = ["webserver","soccer","football","league"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
dependencies = [
"bottle>=0.12.16",
"waitress>=2.1.0",
"sqlalchemy>=1.4",
"toml",
"PyYAML",
"watchdog",
"jinja2"
]
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"