-
Notifications
You must be signed in to change notification settings - Fork 49
/
pyproject.toml
51 lines (45 loc) · 1.05 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
[tool.poetry]
name = "django-quill-editor"
version = "0.1.40"
description = ""
authors = ["lhy <dev@lhy.kr>"]
packages = [
{ include = "django_quill" },
]
[tool.poetry.dependencies]
python = "^3.12"
Django = "^4.2"
django-extensions = "^3.2.3"
djangorestframework = "^3.15.2"
gunicorn = "^23.0.0"
model-bakery = "^1.19.5"
[tool.poetry.group.dev.dependencies]
# Test
pytest = "^8.3.3"
pytest-django = "^4.9.0"
pytest-cov = "^5.0.0"
coverage = "^6.2"
codecov = "^2.0.16"
tox = "^4.20.0"
# Deploy
twine = "^5.1.1"
setuptools = "^75.1.0"
notebook = "<8"
# Doc
Sphinx = "^4.3.1"
recommonmark = "^0.7.1"
sphinx-rtd-theme = "^1.0.0"
build = "^1.2.2"
wheel = "^0.44.0"
[tool.pytest.ini_options]
python_files = ["test*.py", "*_tests.py"]
DJANGO_SETTINGS_MODULE = "playground.config.settings"
norecursedirs = ["*/templates/*", "*/static/*", "*/migrations/*", "*/.media/*", "*/.static/*", ".git", "build/*", "dist/*"]
addopts = "--nomigrations --reuse-db"
[build-system]
requires = [
"poetry>=0.12",
"setuptools>=42",
"wheel",
]
build-backend = "setuptools.build_meta"