forked from thelabnyc/wagtail_blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (40 loc) · 1 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
[tool.poetry]
name = "wagtail_blog"
version = "2.3.5"
description = "A wordpress like blog app implemented in wagtail"
authors = ["David Burke"]
license = "Apache License"
keywords = ["django", "wagtail", "blog"]
homepage = "https://gitlab.com/thelabnyc/wagtail_blog"
readme = "README.md"
classifiers=[
"Development Status :: 5 - Production/Stable",
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Wagtail',
'Intended Audience :: Developers',
"License :: OSI Approved :: Apache Software License",
]
packages = [
{ include = "blog" }
]
[tool.poetry.dependencies]
python = "^3.6"
Django = "*"
wagtail = "^2"
requests = "*"
lxml = "*"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
django-hashers-passlib = "^0.4"
django-storages = "^1.8"
django-contrib-comments = "^1.9.1"
django-comments-xtd = "^2.4.1"
ipdb = "^0.12.3"
pylint = "^2.4.4"
pylint-django = "^2.0.13"
boto3 = "^1.10.46"
responses = "^0.10.9"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"