-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (76 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
83 lines (76 loc) · 1.52 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[tool.poetry]
name = "bms"
version = "0.1.0"
description = ""
authors = ["TaeHyoungKwon <kth5604@gmail.com>"]
[tool.poetry.dependencies]
python = "3.10"
django-ninja = "^0.17.0"
uvicorn = {version = "^0.13.4", extras = ["standard"]}
django-environ = "^0.4.5"
dj-database-url = "^0.5.0"
gunicorn = "^20.0.4"
whitenoise = "^5.2.0"
pydantic = "^1.9.0"
django-extensions = "^3.1.1"
orjson = "^3.5.2"
httpx = "^0.18.1"
django-cors-headers = "^3.7.0"
django-storages = "^1.11.1"
colorama = "^0.4.4"
boto3 = "^1.18.1"
pytest-pythonpath = "^0.7.3"
freezegun = "^1.1.0"
types-freezegun = "^1.1.2"
mysqlclient = "^2.1.0"
mypy = "^0.931"
cryptography = "^37.0.2"
django-ninja-jwt = "^5.2.0"
requests = "^2.28.0"
[tool.poetry.dev-dependencies]
pre-commit = "^2.11.1"
mypy = "*"
flake8 = "^3.9.0"
black = "^21.4b2"
isort = "^5.8.0"
flake8-bugbear = "^21.3.2"
pytest = "^6.2.2"
pytest-env = "^0.6.2"
pytest-django = "^4.1.0"
awscli-local = "^0.14"
ipdb = "^0.13.7"
ipython = "^7.23.1"
django-extensions = "^3.1.3"
[tool.black]
line-length = 120
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| node_modules
| docs
)
)
'''
[tool.isort]
profile = "black"
known_first_party = [
"ras"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[flake8]
ingnore = "E501"
max-line-length = 120