-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 839 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (30 loc) · 839 Bytes
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
[tool.poetry]
name = "django-task-api"
version = "1.4.1"
description = "A REST API for managing background tasks in Django"
authors = ["Nikolas Stevenson-Molnar <nik.molnar@consbio.org>"]
license = "MIT"
packages = [
{ include = "task_api" }
]
include = ["task_api/static/*.js"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
[tool.poetry.dependencies]
python = "^3.6"
djangorestframework = "^3.0"
Django = ">=2.2,!(>=3,<3.2)"
celery = ">=4"
six = "^1.16.0"
[tool.poetry.dev-dependencies]
mock = "^4.0.3"
pytest-django = "^4.4.0"
pytest = "^6.2.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"