-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (45 loc) · 1.24 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
[tool.poetry]
name = "inventory-manager"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
readme = "README.md"
packages = [{include = "inventory_manager"}]
[tool.poetry.dependencies]
python = "^3.9"
django = "4.0.1"
reactivated = "^0.30.2"
djangorestframework = "^3.14.0"
django-widget-tweaks = "^1.4.12"
checkdigit = "^0.5.0"
pytz = "^2023.3"
psycopg2-binary = "^2.9.6"
django-cors-headers = "^4.1.0"
python-barcode = "^0.14.0"
pillow = "^9.5.0"
django-cleanup = "^8.0.0"
django-rq = "^2.8.1"
redis = "^4.5.5"
natsort = "^8.3.1"
django-stubs = {extras = ["compatible-mypy"], version = "^4.2.3"}
djangorestframework-stubs = {extras = ["compatible-mypy"], version = "^3.14.2"}
uvicorn = "^0.22.0"
cattrs = "^23.1.2"
django-typomatic = "^2.3.2"
requests-html = "^0.10.0"
beautifulsoup4 = "^4.12.2"
sqlparse = "^0.4.4"
sql-metadata = "^2.8.0"
rq-scheduler = "^0.13.1"
[tool.poetry.group.dev.dependencies]
isort = "5.10.1"
flake8 = "^6.0.0"
djangorestframework-stubs = "^3.14.1"
types-pillow = "^10.0.0.2"
types-redis = "^4.6.0.3"
types-beautifulsoup4 = "^4.12.0.6"
types-simplejson = "^3.19.0.2"
ruff = "^0.6.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"