Install dependencies

This commit is contained in:
Remi Rampin 2022-05-12 17:14:54 -04:00
commit d1aa270f8c
2 changed files with 1137 additions and 0 deletions

1119
poetry.lock generated Normal file

File diff suppressed because it is too large Load Diff

18
pyproject.toml Normal file
View File

@ -0,0 +1,18 @@
[tool.poetry]
name = "calendar-booking"
version = "0.1.0"
description = ""
authors = ["Remi Rampin <remi@rampin.org>"]
[tool.poetry.dependencies]
python = "^3.8"
google-api-python-client = ">=2,<3"
google-auth-httplib2 = ">=0.1,<0.2"
google-auth-oauthlib = ">=0.5,<0.6"
[tool.poetry.dev-dependencies]
ipykernel = ">=6,<7"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"