-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (46 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
59 lines (46 loc) · 1.24 KB
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
[tool.poetry]
name = "python-postman"
version = "0.6.0"
description = "Pypostman allows users to parse postman environments and postman collections."
authors = ["Data Engineering Team <[email protected]>"]
readme = "README.md"
[tool.isort]
profile = "black"
[tool.poetry.dependencies]
python = "^3.8.1"
requests = "^2.32.3"
pyyaml = "^6.0.1"
pydantic = "^2.6.4"
cryptography = "^42.0.5"
urllib3 = "^1.25.4"
logbook = "^1.7.0.post0"
pendulum = "^3.0.0"
boto3 = "^1.34.67"
pytz = "^2024.1"
[tool.poetry.group.lint.dependencies]
flake8-annotations = "^3.0.1"
flake8-builtins = "^2.1.0"
flake8-docstrings = "^1.7.0"
flake8-eradicate = "^1.5.0"
flake8-future-annotations = "^1.1.0"
flake8-isort = "^6.0.0"
flake8-new-union-types = "^0.4.1"
flake8-pep585 = "^0.1.7"
flake8-secure-coding-standard = "^1.4.0"
flake8-type-checking = "^2.4.1"
flake8-use-pathlib = "^0.3.0"
flake8-variables-names = "^0.0.6"
pep8-naming = "^0.13.3"
black = "^24.3.0"
isort = "^5.12.0"
pip-audit = "^2.6.1"
mypy = "^1.9.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
pypostman = "pypostman.__main__:main"