-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
59 lines (55 loc) · 1.6 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
52
53
54
55
56
57
58
59
[tool.poetry]
name = "folioblocks"
version = "0.1.0"
description = "The Main Repository for the Design of a Credential Verification System using Blockchain Technology. Contains submodules that divides the ecosystem and development of the blockchain system and the web application."
authors = ["Janrey Licas <[email protected]>"]
license = "GPL-3.0-or-later"
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.73.0"
uvicorn = {extras = ["standard"], version = "^0.17.1"}
fastapi-utils = "^0.2.1"
python-multipart = "^0.0.5"
pydantic = {extras = ["email"], version = "^1.9.0"}
fastapi-mail = "^1.0.4"
cryptography = "^36.0.1"
databases = {extras = ["aiosqlite"], version = "^0.5.5"}
aiosqlite = "^0.17.0"
python-dotenv = "^0.19.2"
PyJWT = "^2.3.0"
aiofiles = "^0.8.0"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
aiohttp = "^3.8.1"
aiosmtplib = "^1.1.6"
frozendict = "^2.3.0"
Pympler = "^1.0.1"
aioconsole = "^0.4.1"
orjson = "^3.6.7"
pyotp = "^2.6.0"
pylint = "^2.14.5"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
flake8 = "^4.0.1"
mypy = "^0.931"
sqlalchemy-stubs = "^0.4"
types-aiofiles = "^0.8.3"
Faker = "^13.3.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
mypy_path = "/node/stubs"
exclude="^[a-z].+pyi$"
python_version = "3.10"
platform = "win32"
disallow_untyped_calls = "True"
disallow_untyped_defs = "True"
check_untyped_defs = "True"
disallow_untyped_decorators = "True"
warn_redundant_casts = "True"
warn_unused_ignores = "True"
warn_unreachable = "True"
show_column_numbers = "True"
pretty = "True"
show_traceback = "True"
plugins = "sqlmypy"