-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 855 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (38 loc) · 855 Bytes
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
43
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"koi_api",
"koi_api.common",
"koi_api.config",
"koi_api.orm",
"koi_api.persistence",
"koi_api.resources"
]
[project]
name = "koi-api"
version = "0.5.0"
description = "Backend server for the KOI-System"
license.file = "COPYING.LESSER"
readme = "README.md"
requires-python = ">=3.8,<3.12"
classifiers = ["Programming Language :: Python :: 3", "Operating System :: OS Independent"]
dependencies = [
"sqlalchemy >= 2.0.0",
"flask",
"flask-cors",
"flask_sqlalchemy",
"flask_restful",
"PyMySql",
"cryptography",
]
[project.optional-dependencies]
develop = [
"flake8",
"pytest",
"pytest-cov",
"coverage",
]
[project.urls]
"Homepage" = "https://github.com/koi-learning"