-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
101 lines (97 loc) · 2.56 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[tool.poetry]
name = "temba"
version = "7.4.2"
description = "Hosted service for visually building interactive messaging applications"
authors = ["Nyaruka <code@nyaruka.com>"]
license = "AGPL-3"
[tool.poetry.urls]
repository = "http://github.com/rapidpro/rapidpro"
[tool.poetry.dependencies]
python = "^3.9"
Django = "^4.2.3"
django-compressor = "^4.3"
django-countries = "^7.0"
django-flatpickr = "^2.0.2"
django-hamlpy = "^1.4.4"
django-mptt = "^0.12.0"
django-redis = "^4.12.1"
django-storages = "^1.11.1"
django-timezone-field = "^4.1.1"
djangorestframework = "^3.12.2"
dj-database-url = "^0.5.0"
smartmin = "^4.1.0"
celery = "^5.2.2"
redis = "^4.4.4"
elasticsearch = "^7.11.0"
elasticsearch-dsl = "^7.3.0"
analytics-python = "^1.2.9"
boto3 = "^1.17.21"
cryptography = ">=42.0.4"
vonage = "2.5.2"
pyfcm = "^1.5.1"
pyotp = "2.4.1"
python-telegram-bot = "^11.1.0"
sentry-sdk = "^1.0.0"
stripe = "^2.56.0"
twilio = "6.24.0"
twython = "3.5.0"
geojson = "^2.5.0"
Markdown = "^3.3.4"
polib = "^1.1.0"
pyexcel = "^0.6.6"
pyexcel-xls = "^0.6.2"
pyexcel-xlsx = "^0.6.0"
python-magic = "^0.4.22"
xlsxlite = "^0.2.0"
colorama = "^0.4.4"
gunicorn = "^20.0.4"
iptools = "^0.7.0"
# poetry filename/version parsing issue with iso-639: https://github.com/python-poetry/poetry/issues/6996
iso-639 = {git = "https://github.com/noumar/iso639.git", tag = "0.4.5"}
iso8601 = "^0.1.14"
phonenumbers = "*"
pycountry = "^20.7.3"
python-dateutil = "^2.8"
cffi = "1.15.0"
psycopg2-binary = "^2.9.1"
python-intercom = "^3.1.0"
packaging = "^20.9"
requests = "^2.31.0"
requests-toolbelt = "^1.0.0"
chardet = "^4.0.0"
openpyxl = "^3.0.9"
python-json-logger = "2.0.0"
#----- engage
bandwidth-sdk = "^3.1.0"
# to install via IntelliJ, use https://github.com/bandwidthcom/python-bandwidth-iris#egg=iris_sdk
iris_sdk = {git = "https://github.com/bandwidthcom/python-bandwidth-iris"}
amqp = "5.1.1"
dicttoxml = "1.7.16"
django-getenv = "1.3.2"
django-cache-url = "3.4.4"
pypng = "^0.20220715.0"
pyqrcode = "1.2.1"
uwsgi = "2.0.22"
whitenoise = "6.4.0"
brotli = "1.0.9"
#----- oidc _PROVIDER_
#pyjwt = "^2.3.0" #required by oauthlib
#oauthlib = "^3.2.0" #required by django-oauth-toolkit
#django-oauth-toolkit = "^1.7.1"
#django-cors-headers = "^3.11.0"
#----- oidc _CLIENT_
django-oauth2-authcodeflow = "1.0.0"
#----- update advisories
certifi = "^2023.7.22"
urllib3 = "^1.26.17"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
coverage = "^5.5"
flake8 = "^4.0.1"
isort = "^5.10.1"
#codecov = "^2.1.11"
responses = "^0.12.1"
beautifulsoup4 = "^4.9.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"