-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 931 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
44
45
46
47
48
49
50
51
52
53
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.poetry]
name = "python-common-lib"
version = "1.0.13"
description = ""
authors = ["Szilard Nemeth <[email protected]>"]
readme = "README.md"
packages = [{include = "pythoncommons"}]
[tool.poetry.dependencies]
python = "^3.8"
gspread = "^5.5.0"
humanize = "^4.4.0"
bs4 = "^0.0.1"
requests = "^2.28.1"
GitPython = "^3.1.27"
tabulate = "^0.8.10"
docker = "^7.1.0"
sh = ">=1.14.1,<1.15.0"
Colr = "^0.9.1"
jira = "^3.4.1"
pytest = ">=6.2.3,<6.3.0"
dataclasses-json = "^0.5.7"
[tool.poetry.group.dev.dependencies]
flake8 = "^5.0.4"
pytest = ">=6.2.3,<6.3.0"
pytest-cov = "^3.0.0"
pre-commit = "^2.20.0"
dataclasses-json = "^0.5.7"
black = "*"
autopep8 = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"