-
Notifications
You must be signed in to change notification settings - Fork 59
/
pyproject.toml
103 lines (85 loc) · 2.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[tool.poetry]
name = "ofscraper"
version = "0.0.0"
description = "automatically scrape onlyfans"
authors = ["datawhores <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<3.14"
httpx = { extras = ["http2"], version = "^0.27.0" }
inquirerpy = "^0.3.4"
setuptools = ">=69.1.1,<71.0.0"
schedule = "^1.2.1"
browser-cookie3 = "0.19.1"
requests = "^2.31.0"
bs4 = "^0.0.2"
rich = "^13.7.1"
tenacity = "^8.2.3"
arrow = "^1.3.0"
win32-setctime = "^1.1.0"
pathvalidate = "^3.2.0"
xxhash = "^3.4.1"
mpegdash = "^0.4.0"
diskcache = "^5.6.3"
dunamai = "^1.19.2"
poetry-dynamic-versioning = "^1.2.0"
textual = "0.52.1"
aiohttp = "3.10.2"
faust-cchardet = "^2.1.19"
certifi = "^2024.2.2"
pycryptodome = "^3.20.0"
pywidevine = "^1.8.0"
aioprocessing = "^2.0.1"
more-itertools = "^10.2.0"
psutil = "^5.9.8"
humanfriendly = "^10.0"
filelock = "^3.13.1"
uvloop = { version = "^0.19.0", markers = "sys_platform == 'linux' or sys_platform == 'linux2'" }
aiosqlite = "^0.20.0"
speedtest-cli = "^2.1.3"
prompt-toolkit = "^3.0.43"
setproctitle = "^1.3.3"
lxml = "^5.1.0"
multiprocess = "^0.70.16"
dill = "^0.3.8"
cloup = "^3.0.5"
pynumparser = "^1.4.1"
idna = "3.7"
aiofiles = "^23.2.1"
tqdm = "^4.66.4"
async-property = "^0.2.2"
limiter = "^0.5.0"
aiolimiter = "^1.1.0"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.2"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.3.1"
coverage = "^7.4.3"
pytest-cov = "^4.1.0"
random-unicode-emoji = "^2.8"
random-emoji = "^1.0.15"
pytest-mock = "^3.12.0"
[tool.poetry.group.docs.dependencies]
sphinx-argparse = "^0.4.0"
[tool.poetry.extras]
pyinstaller = ["pyinstaller"]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry.scripts]
ofscraper = "ofscraper.__main__:main"
[tool.poetry.urls]
"Homepage" = "https://github.com/datawhores/OF-Scraper"
# pyproject.toml
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
metadata = true
format = "{base}"
pattern = "(?P<base>\\d+\\.\\d+\\.\\w+|\\d+\\.\\w+)"