-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
48 lines (44 loc) · 1.33 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
[tool.poetry]
name = "django-carrot"
version = "1.5.0"
description = "A RabbitMQ asynchronous task queue for Django."
authors = ["Christoper Davies <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/chris104957/django-carrot"
homepage = "https://django-carrot.readthedocs.io"
readme = "README.rst"
classifiers = [
'Environment :: Web Environment',
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
]
packages = [
{ include = "carrot" }
]
[tool.poetry.dependencies]
python = "^3.6.3"
sphinx_bootstrap_theme = "^0.6.5"
djangorestframework = "^3.9"
pika = "^0.13.1"
json2html = "^1.2"
django = "^2.1"
psutil = "^5.6"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
mock = "^2.0"
python-coveralls = "^2.9"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"