-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (54 loc) · 1.16 KB
/
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
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "bot-huntag"
version = "1.0.0"
description = "Robo de scraping do site Huntag"
authors = ["anaplopes <anapalopes0103@gmail.com>"]
readme = "README.md"
packages = [{include = "bot_huntag"}]
[tool.poetry.dependencies]
python = "^3.10"
selenium = "^4.10.0"
webdriver-manager = "^3.8.6"
pydantic = "^1.10"
sqlalchemy = "^2.0.17"
python-dotenv = "^1.0.0"
psycopg2-binary = "^2.9.6"
azure-identity = "^1.13.0"
msgraph-sdk = "^1.0.0a13"
msal = "^1.23.0"
mongoengine = "^0.27.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
isort = "^5.12.0"
[tool.black]
line-length = 79
target-version = [ 'py38' ]
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
| version
)
)
'''
[tool.isort]
line_length = 79
known_first_party = 'model_catalog'
multi_line_output = 3
use_parentheses = true
include_trailing_comma = true
skip_glob = [ '**migrations**' ]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"