forked from auto-mat/django-import-export-celery
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
46 lines (42 loc) · 1 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
[tool.poetry]
name = "django-import-export-stomp"
version = "0.3.0"
description = "Run django-import-export processes using django-stomp"
authors = [
"Nilton Frederico Teixeira <[email protected]>",
]
license = "MIT"
readme = "README.md"
packages = [{ include = "import_export_stomp" }]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
django = ">=3.2"
django-stomp = "*"
django-author = "*"
django-import-export = "*"
[tool.poetry.group.dev.dependencies]
### Pytest: Essentials
pytest = "^7"
pytest-mock = "^3"
pytest-django = "^4"
pytest-cov = "^3"
pytest-env = "^0"
pytest-xdist = "*"
### Pytest: Add-ons
pytest-icdiff = "^0"
pytest-clarity = "^1"
### Format, lint, static type checker, among others
black = "*"
mypy = "^0"
isort = "*"
flake8 = "*"
flake8-bugbear = "*"
autoflake = "^1"
pre-commit = "^2"
#### Helpers and so on
model-bakery = "^1.9.0"
django-storages = "^1.14.1"
boto3 = "^1.28.57"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"