-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (64 loc) · 1.9 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
64
65
66
67
68
69
[tool.poetry]
name = "wagtail-sb-admin-interface"
version = "0.3.0"
description = "Social Networks settings for wagtail sites."
authors = [
"SoftButterfly Development Team <dev@softbutterfly.io>",
"zodiacfireworks <martin.vuelta@gmail.com>"
]
license = "MIT License"
readme = "README.md"
homepage = "https://github.com/softbutterfly/wagtail-sb-admin-interface"
repository = "https://github.com/softbutterfly/wagtail-sb-admin-interface"
documentation = "https://github.com/softbutterfly/wagtail-sb-admin-interface/wiki"
keywords = ["Softbutterfly", "Django", "Migrations"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "wagtail_sb_admin_interface", from = "src" }
]
include = [
"LICENSE.txt",
"CHANGELOG.md",
]
[tool.poetry.urls]
"Download" = "https://github.com/softbutterfly/wagtail-sb-admin-interface/archive/v0.3.0.tar.gz"
"Bug Tracker" = "https://github.com/softbutterfly/wagtail-sb-admin-interface/issues"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0.0"
django = "< 5.0"
django-colorfield = "<1.0.0"
wagtail = "< 5.0"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.1"
bandit = "^1.7.4"
black = "^23.1.0"
codecov = "^2.1.12"
coverage = "^7.1.0"
flake8 = "^6.0.0"
flake8-black = "^0.3.6"
isort = "^5.12.0"
mypy = "^1.0.1"
pre-commit = "^3.0.4"
pydocstyle = "^6.3.0"
pylint = "^2.16.2"
pylint-django = "^2.5.3"
pytest = "^7.2.1"
pytest-cov = "^4.0.0"
pytest-vcr = "^1.0.2"
python-dotenv = "^0.21.1"
tbump = "^6.9.0"
tox = "^4.4.6"
twine = "^4.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"