forked from LeeHanYeong/django-quill-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (40 loc) · 793 Bytes
/
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
[tool.poetry]
name = "django-quill-editor"
version = "0.1.0"
description = ""
authors = ["lhy <dev@lhy.kr>"]
packages = [
{ include = "django_quill" },
]
[tool.poetry.dependencies]
python = "^3.10"
Django = "^4.1.3"
django-extensions = "^3.1.5"
djangorestframework = "^3.13.1"
gunicorn = "^20.1.0"
model-bakery = "^1.3.3"
[tool.poetry.dev-dependencies]
# Test
pytest = "^6.2.5"
pytest-django = "^4.5.1"
pytest-cov = "^3.0.0"
coverage = "^6.2"
codecov = "^2.0.16"
tox = "^3.24.4"
# Deploy
twine = "^3.7.0"
setuptools = "^59.5.0"
notebook = "^6.4.6"
# Doc
Sphinx = "^4.3.1"
recommonmark = "^0.7.1"
sphinx-rtd-theme = "^1.0.0"
build = "^0.7.0"
wheel = "^0.37.0"
[build-system]
requires = [
"poetry>=0.12",
"setuptools>=42",
"wheel",
]
build-backend = "setuptools.build_meta"