-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
43 lines (39 loc) · 997 Bytes
/
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 = "digirent"
version = "0.1.0"
description = ""
authors = ["Shaibu Shaibu <[email protected]>"]
[tool.poetry.scripts]
create_admin_user = "digirent.script:create_admin_user"
[tool.poetry.dependencies]
python = "^3.8"
uvicorn = "^0.11.5"
sqlalchemy = "^1.3.17"
psycopg2 = "^2.8.5"
alembic = "^1.4.2"
sqlalchemy_utils = "^0.36.6"
passlib = {extras = ["bcrypt"], version = "^1.7.2"}
python-multipart = "^0.0.5"
pyjwt = "^1.7.1"
dependency_injector = "^3.15.6"
pytz = "^2020.1"
aiofiles = "^0.5.0"
stripe = "^2.48.0"
sendgrid = "^6.3.1"
itsdangerous = "^1.1.0"
inflection = "^0.5.1"
signrequest-python-client = "^2.1.0"
Authlib = "^0.15.1"
httpx = "^0.16.1"
GeoAlchemy2 = "^0.8.4"
mollie-api-python = "^2.4.1"
celery = {extras = ["redis"], version = "^5.0.2"}
fastapi = "0.61.2"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest_cov = "^2.10.1"
pytest-mock = "^3.1.1"
haversine = "^2.3.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"