-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
51 lines (46 loc) · 1.01 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
43
44
45
46
47
48
49
50
51
[project]
name = "flemi-api"
version = ""
description = ""
authors = [
{name = "rice0208", email = "[email protected]"},
{name = "andyzhou", email = "[email protected]"},
]
dependencies = [
"apiflask~=1.0.0",
"flask-sqlalchemy>=2.5.1",
"flask-migrate>=3.1.0",
"authlib>=1.0.1",
"bleach>=5.0.0",
"faker>=13.3.5",
"flask-cors>=3.0.10",
"rich>=12.2.0",
"halo>=0.0.31",
"python-dotenv>=0.20.0",
]
requires-python = ">=3.8"
license = {text = "MIT"}
[project.optional-dependencies]
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"pytest>=7.1.2",
"pytest-cov>=3.0.0",
"pytest-xdist>=2.5.0",
"mypy>=0.950",
"flake8>=4.0.1",
"black>=22.6.0",
"pre-commit>=2.20.0",
]
postgres = [
"psycopg2-binary>=2.9.3",
]
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool.pytest.ini_options]
addopts = " -p no:warnings -n auto --cov"
testpaths = ["tests"]
[tool.coverage.run]
branch = true
include = ["flemi/api/*.py"]