-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (41 loc) · 926 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[tool.mypy]
mypy_path = "src/"
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "--rootdir ../tests/ --ignore=__pypackages__"
[project]
name = "app"
version = "0.0.1"
description = ""
authors = [
{name = "Leandro de Souza", email = "[email protected]"},
]
dependencies = [
"fastapi[all]==0.74.1",
"tortoise-orm[asyncpg]==0.18.1",
"python-jose[cryptography]==3.3.0",
"passlib[bcrypt]==1.7.4",
"email-validator>=1.1.3",
"virtualenv==16.7.7",
"python-dotenv>=0.19.2",
"colorama>=0.4.4",
]
requires-python = ">=3.8"
license = {text = "MIT"}
[project.urls]
Homepage = ""
[project.optional-dependencies]
[tool]
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"pytest>=7.0.1",
"black>=22.1.0",
"pytest-mock>=3.7.0",
"tox-pdm==0.3.3",
"mypy>=0.931",
"tox>=3.24.5",
]
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"