-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.06 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
[tool.poetry]
name = "cmms"
version = "0.0.1"
description = "A reliable scheduling, tracking, reporting tools for equipment and facilities maintenance."
authors = [
"FATx64",
"null2264"
]
license = "BSD-3-Clause"
[tool.poetry.scripts]
start = "scripts:runserver"
tailwind = "scripts:tailwind"
manage = "scripts:manage"
[tool.poetry.dependencies]
python = "^3.10"
Django = {extras = ["bcrypt"], version = "^4.2.3"}
dj-database-url = "^2.0.0"
django-phonenumber-field = {extras = ["phonenumberslite"], version = "^7.1.0"}
django-widget-tweaks = "^1.4.12"
typing-extensions = "^4.5.0"
bcrypt = "^4.0.1"
django-redis = "^5.2.0"
pillow = "^9.5.0"
dateutils = "^0.6.12"
gunicorn = "^20.1.0"
uvicorn = "^0.22.0"
graphene-django = "^3.1.2"
openpyxl = "^3.1.2"
django-browser-reload = "^1.11.0"
[tool.poetry.group.dev.dependencies]
django-tailwind = "^3.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 125
skip-string-normalization = true
[tool.isort]
profile = "black"
multi_line_output = 3
lines_after_imports = 2