-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.22 KB
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
[tool.poetry]
name = "kingdom-sdk"
version = "1.0.0"
description = "Library containing the core modules for the kingdom-python-server"
authors = ["William Abreu <william@t10.digital>"]
license = "MIT License"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
SQLAlchemy = "^1.4.25"
pytz = "^2021.3"
jinjasql = "^0.1.8"
redis = "^3.5.3"
[tool.poetry.dev-dependencies]
mypy = "^0.910"
pydocstyle = "^6.1.1"
pre-commit = "^2.15.0"
black = "^21.9b0"
flake8 = "^4.0.1"
isort = "^5.9.3"
pyclean = "^2.0.0"
toml = "^0.10.2"
pytest = "^6.2.5"
types-pytz = "^2021.3.0"
alembic = "^1.7.4"
psycopg2-binary = "^2.9.1"
python-dotenv = "^0.19.1"
sql-formatter = "^0.6.2"
types-redis = "^3.5.15"
pytest-asyncio = "^0.16.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# See: https://mypy.readthedocs.io/en/stable/config_file.html
[tool.mypy]
exclude = "(\\..*|env|venv|__pycache__|build|dist)/$"
files = ["kingdom_sdk"]
python_version = "3.9"
ignore_missing_imports = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
disallow_untyped_defs = true
check_untyped_defs = true
show_error_codes = true
pretty = true