-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 1.01 KB
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
[tool.poetry]
name = "selene"
version = "0.1.0"
description = "Selene library code"
authors = ["Chris Veilleux <veilleux.chris@gmail.com>"]
license = "GNU AGPL 3.0"
[tool.poetry.dependencies]
python = "^3.9"
facebook-sdk = "*"
# Version 1.0 of flask required because later versions do not allow lists to be passed as API repsonses. The Google
# STT endpoint passes a list of transcriptions to the device. Changing this to return a dictionary would break the
# API's V1 contract with Mycroft Core.
#
# To make flask 1.0 work, older versions of itsdangerous, jinja2 and markupsafe are required.
email-validator = "*"
flask = "<1.1"
itsdangerous = "<=2.0.1"
jinja2 = "<2.11.4"
markupsafe = "<=2.0.1"
paramiko = "*"
passlib = "*"
psycopg2-binary = "*"
pygithub = "*"
pyjwt = "*"
redis = "*"
schedule = "*"
schematics = "*"
sendgrid = "*"
stripe = "*"
werkzeug = "<=2.0.3"
[tool.poetry.dev-dependencies]
black = "*"
pyhamcrest = "*"
pylint = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"