-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
41 lines (38 loc) · 875 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
[tool.poetry]
name = "account-creator"
version = "0.1.0"
description = "script for creating google accounts"
authors = ["spike <azamtoiri@gmail.com>"]
license = "GNU GENERAL PUBLIC LICENSE"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
selenium = "4.5.0"
requests = "2.28.1"
fake-useragent = "0.1.14"
async-generator = "1.10"
attrs = "22.1.0"
certifi = "2023.7.22"
cffi = "1.15.1"
charset-normalizer = "2.1.1"
colorama = "0.4.6"
exceptiongroup = "1.0.0"
h11 = "0.14.0"
idna = "3.7"
outcome = "1.2.0"
packaging = "21.3"
pycparser = "2.21"
pyparsing = "3.0.9"
pysocks = "1.7.1"
python-dotenv = "0.21.0"
sniffio = "1.3.0"
sortedcontainers = "2.4.0"
tqdm = "4.64.1"
trio = "0.22.0"
trio-websocket = "0.9.2"
urllib3 = "1.26.12"
webdriver-manager = "3.8.4"
wsproto = "1.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"