forked from szilard-nemeth/google-api-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 906 Bytes
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 906 Bytes
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
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.poetry]
name = "google-api-wrapper2"
version = "1.0.3"
description = ""
authors = ["Szilard Nemeth <szilard.nemeth88@gmail.com>"]
readme = "README.md"
packages = [{include = "googleapiwrapper"}]
[tool.poetry.dependencies]
python = "^3.8"
python-common-lib = "1.0.3"
google-api-python-client = "2.31.0"
google-auth-httplib2 = "0.1.0"
google-auth-oauthlib = "0.4.6"
oauth2client = "^4.1.3"
gspread = ">=5.1.1"
[tool.poetry.group.dev.dependencies]
python-common-lib = {git = "https://github.com/szilard-nemeth/python-commons.git"}
flake8 = "^5.0.4"
pytest = ">=3.6"
pytest-cov = "^3.0.0"
pre-commit = "^2.20.0"
black = "*"
autopep8 = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"