-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
70 lines (64 loc) · 1.49 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
64
65
66
67
68
69
70
[tool.poetry]
name = "quotexpy"
version = "1.40.7"
description = "📈 QuotexPy is a library to easily interact with qxbroker."
authors = [
"Santiago Ramirez <[email protected]>",
"Ricardo Spinoza <[email protected]>",
]
repository = "https://github.com/SantiiRepair/quotexpy"
readme = ["README.md"]
keywords = ["quotex", "quotexpy"]
license = "LGPL-2.1"
packages = [
{include = "quotexpy"}
]
[tool.poetry.dependencies]
python = ">=3.8, <3.13"
beautifulsoup4 = "4.11.2"
certifi = ">=2022.12.7"
greenlet = ">=2.0.1"
undetected-chromedriver = ">=3.5.5"
pyOpenSSL = ">=23.1.1"
pytz = ">=2023.3"
requests = ">=2.31.0"
requests-toolbelt = ">=1.0.0"
urllib3 = ">=2.0.5"
websocket-client = ">=1.6.3"
websockets = ">=11.0.3"
psutil = ">=5.9.8"
setuptools = ">=70.0.0"
[tool.poetry.dev-dependencies]
black = "^23.9.1"
poetry = "^1.6.1"
poetry2setup = "^1.1.0"
pylint = "^2.17.5"
pytest = "^7.4.2"
schedule = ">=1.2.1"
shutup = "0.2.0"
termcolor = "^2.3.0"
[tool.black]
line-length = 120
target-version = ['py310', 'py311', 'py312']
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''
[build-system]
requires = ["poetry-core"]
python_requires = ">=3.10"
build-backend = "poetry.core.masonry.api"