Some packages were upgraded; the rename from `CommonMark` to `commonmark` was the only change breaking the unit tests.
64 lines
1.3 KiB
TOML
64 lines
1.3 KiB
TOML
[tool.poetry]
|
|
name = "pillar"
|
|
version = "2.0"
|
|
description = ""
|
|
authors = [
|
|
"Francesco Siddi <francesco@blender.org>",
|
|
"Pablo Vazquez <pablo@blender.studio>",
|
|
"Sybren Stüvel <sybren@blender.studio>",
|
|
]
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
# Must be run after installing/updating:
|
|
translations = 'pillar.cli.translations:main'
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "~3.6"
|
|
attrs = "~19"
|
|
algoliasearch = "~1"
|
|
bcrypt = "~3"
|
|
blinker = "~1.4"
|
|
bleach = "~3.1"
|
|
celery = {version = "~4.3",extras = ["redis"]}
|
|
commonmark = "~0.9"
|
|
|
|
# These must match the version of ElasticSearch used:
|
|
elasticsearch = "~6.1"
|
|
elasticsearch-dsl = "~6.1"
|
|
|
|
Eve = "~0.8" # currently latest is 0.9
|
|
Flask = "~1.0"
|
|
Flask-Babel = "~0.12"
|
|
Flask-Caching = "~1.7"
|
|
Flask-DebugToolbar = "~0.10"
|
|
Flask-Script = "~2.0"
|
|
Flask-Login = "~0.4"
|
|
Flask-WTF = "~0.14"
|
|
gcloud = "~0.18"
|
|
google-apitools = "~0.5"
|
|
IPy = "~1.00"
|
|
MarkupSafe = "~1.1"
|
|
ndg-httpsclient = "~0.5"
|
|
Pillow = "~6.0"
|
|
python-dateutil = "~2.8"
|
|
rauth = "~0.7"
|
|
raven = {version = "~6.10",extras = ["flask"]}
|
|
redis = "~3.2"
|
|
shortcodes = "~2.5"
|
|
zencoder = "~0.6"
|
|
pillarsdk = {path = "../pillar-python-sdk"}
|
|
|
|
# Secondary requirements that weren't installed automatically:
|
|
idna = "~2.8"
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pillar-devdeps = {path = "./devdeps"}
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|