forked from datawhores/OF-Scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
105 lines (84 loc) · 2.24 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
104
105
[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.23.3" }
inquirerpy = "^0.3.4"
setuptools = "^67.6.0"
schedule = "^1.1.0"
browser-cookie3 = "^0.17.1"
requests = "^2.28.2"
bs4 = "^0.0.1"
rich = "^13.3.2"
tenacity = "^8.2.2"
arrow = "^1.2.3"
win32-setctime = "^1.1.0"
pathvalidate = "^2.5.2"
xxhash = "^3.2.0"
mpegdash = "^0.3.1"
diskcache = "^5.6.1"
ffmpeg-python = "^0.2.0"
dunamai = "^1.17.0"
poetry-dynamic-versioning = "^0.22.0"
textual = "^0.27.0"
aiohttp = { extras = ["speedups"], version = "^3.8.5" }
faust-cchardet = "^2.1.18"
certifi = "^2023.5.7"
pycryptodome = "^3.18.0"
pywidevine = "^1.6.0"
aioprocessing = { extras = ["dill"], version = "^2.0.1" }
more-itertools = "^9.1.0"
psutil = "^5.9.5"
pytest = "^7.4.0"
humanfriendly = "^10.0"
filelock = "^3.12.2"
aiofiles = "^23.2.1"
uvloop = { version = "^0.19.0", markers = "sys_platform == 'linux' or sys_platform == 'linux2'" }
aiosqlite = "^0.19.0"
speedtest-cli = "^2.1.3"
prompt-toolkit = "3.0.37"
setproctitle = "^1.3.3"
lxml = "^4.9.4"
[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.2.3"
pytest-cov = "^4.0.0"
random-unicode-emoji = "^2.8"
random-emoji = "^1.0.15"
pytest-mock = "^3.11.1"
[tool.poetry.group.docs.dependencies]
sphinx-argparse = "^0.4.0"
[tool.poetry.group.testing.dependencies]
coverage = "^7.2.7"
pytest = "^7.4.0"
pytest-check = "^2.2.0"
random-unicode-emoji = "^2.8"
pytest-mock = "^3.11.1"
[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+)"