-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
60 lines (55 loc) · 1.57 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
[tool.black]
line-length = 120
[tool.isort]
combine_as_imports = true
ensure_newline_before_comments = true
force_grid_wrap = 0
include_trailing_comma = true
known_first_party = "cms_articles"
line_length = 120
multi_line_output = 3
profile = "black"
skip_glob = "*migrations*"
use_parentheses = true
[tool.poetry]
name = "django-cms-articles"
version = "2.1.5"
description = "django CMS application for managing articles"
authors = ["Jakub Dorňák <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
packages = [{include = "cms_articles"}]
repository = "https://github.com/misli/django-cms-articles"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 2",
"Framework :: Django :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: Czech",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
[tool.poetry.dependencies]
python = "^3.8"
Django = "<4"
django-cms = "<3.12"
django-filer = "*"
djangocms-text-ckeditor = "*"
python-dateutil = "*"
[tool.poetry.dev-dependencies]
black = "*"
flake8 = "*"
isort = "*"
pytest-django = "*"
mypy = "*"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]