-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpyproject.toml
63 lines (57 loc) · 1.41 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
53
54
55
56
57
58
59
60
61
62
63
# Poetry pyproject.toml: https://python-poetry.org/docs/pyproject/
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "django-quill-editor"
version = "0.1.36"
description = "Integrate Quill editor with Django project."
readme = "README.me"
authors = ["lhy <dev@lhy.kr>"]
license = "MIT"
repository = "https://github.com/LeeHanYeong/django-quill-editor"
homepage = "https://github.com/LeeHanYeong/django-quill-editor"
packages = [
{ include = "django_quill" },
]
classifiers=[
"Framework :: Django",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 4 - Beta",
]
[tool.poetry.dependencies]
python = "^3.9"
Django = "^3.2.9"
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"
django-extensions = "^3.1.5"
# 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"