-
Notifications
You must be signed in to change notification settings - Fork 119
/
pyproject.toml
55 lines (50 loc) · 1.48 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
[tool.poetry]
name = "wagtail-modeltranslation"
version = "0.15.1"
license = "New BSD"
authors = ["InfoPortugal S.A. <suporte24@infoportugal.pt>"]
maintainers = ["InfoPortugal S.A. <suporte24@infoportugal.pt>"]
readme = 'README.rst'
description = "Translates Wagtail CMS models using a registration approach."
repository = "https://github.com/infoportugal/wagtail-modeltranslation"
keywords = ["django", "wagtail", "translation", "i18n"]
include = [
"*.txt",
"*.rst",
"docs",
"*.rst",
"conf.py",
"wagtail_modeltranslation/static/**",
"wagtail_modeltranslation/management/**",
"wagtail_modeltranslation/templatetags/**",
"wagtail_modeltranslation/templates/**",
]
exclude = ["*.pyc", "*.DS_Store"]
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: BSD License'
]
[tool.poetry.dependencies]
python = "^3.8"
Django = ">=4.2"
wagtail = ">=5.2,<=7.0"
django-modeltranslation = ">=0.17"
[tool.poetry.dev-dependencies]
bump2version = "^1.0.1"
bumpversion = "*"
wheel = "*"
twine = "*"
autopep8 = "^1.6.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^5.0.4"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"