-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (48 loc) · 1.36 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
[tool.poetry]
name = "djangocms-xliff"
version = "1.3.7"
description = "XLIFF Import and Export for the Django CMS"
authors = ["Energie 360 <[email protected]>"]
maintainers = ["Energie 360 <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://energie360.ch"
repository = "https://github.com/energie360/djangocms-xliff"
keywords = ["django", "django-cms", "xliff", "import", "export"]
classifiers = [
"Environment :: Web Environment",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries",
"Framework :: Django",
"Framework :: Django CMS",
]
packages = [
{ include = "djangocms_xliff" },
]
[tool.poetry.dependencies]
python = ">=3.9"
Django = ">=3.2,<5.0"
django-cms = ">=3.9"
requests = ">=2.20"
defusedxml = ">=0.7"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
tox = "^3.27.0"
pytest-django = "^4.5.2"
pre-commit = "^2.20.0"
bump2version = "^1.0.1"
[tool.black]
line-length = 120
[tool.bandit]
exclude_dirs = ["tests"]
skips = ["B101", "B405"]
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"