-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (49 loc) · 1.23 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
[tool.poetry]
name = "tinventory"
version = "0.1.0"
description = ""
authors = ["Jonathan Weth <[email protected]>"]
license = "GNU General Public License v3.0"
[tool.poetry.dependencies]
python = "^3.8"
Django = "^3.1.7"
requests = "^2.25.1"
django-bootstrap-form = "^3.4"
django-cors-headers = "^3.7.0"
django-oauth-toolkit = "^1.4.0"
django-widget-tweaks = "^1.4.8"
djangorestframework = "^3.12.2"
fpdf = "^1.7.2"
Pillow = "^8.1.2"
django-debug-toolbar = "^3.2"
django-yarnpkg = "^6.0.1"
django-select2 = "^7.6.2"
python-memcached = "^1.59"
django-redis = "^4.12.1"
[tool.poetry.dev-dependencies]
sphinx = "^3.5"
sphinxcontrib-django = "^0.5.0"
sphinx-autodoc-typehints = "^1.7"
django-stubs = "^1.1"
pytest = "^6.2"
pytest-django = "^4.1"
pytest-django-testing-postgresql = "^0.1"
selenium = "^3.141.0"
safety = "^1.10.3"
flake8 = "^3.7.9"
flake8-django = "^1.0.0"
flake8-fixme = "^1.1.1"
flake8-mypy = "^17.8.0"
flake8-bandit = "^2.1.2"
flake8-builtins = "^1.4.1"
flake8-docstrings = "^1.5.0"
flake8-rst-docstrings = "^0.0.14"
black = "^20.8b1"
flake8-black = "^0.2.0"
isort = "^5.7.0"
flake8-isort = "^4.0.0"
pytest-cov = "^2.11.1"
pytest-sugar = "^0.9.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"