-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (82 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
91 lines (82 loc) · 2.12 KB
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
[project]
name = "ofscraper"
dynamic = ["version"]
description = "automatically scrape onlyfans"
authors = [{ name = "datawhores", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.11, <3.14"
dependencies = [
"aiofiles~=23.2.1",
"aiolimiter~=1.1.0",
"aioprocessing~=2.0.1",
"aiosqlite~=0.20.0",
"arrow~=1.3.0",
"async-property~=0.2.2",
"browser-cookie3==0.19.1",
"bs4~=0.0.2",
"certifi>=2024.2.2,<2024.8.0",
"cloup~=3.0.5",
"dill~=0.3.8",
"diskcache~=5.6.3",
"faust-cchardet~=2.1.19",
"humanfriendly~=10.0",
"httpx[http2]~=0.28.1",
"httpx-aiohttp~=0.1.2",
"idna==3.7",
"inquirerpy~=0.3.4",
"limiter~=0.5.0",
"lxml~=5.1.0",
"more-itertools~=10.2.0",
"mpegdash~=0.4.0",
"pathvalidate~=3.2.0",
"prompt-toolkit~=3.0.43",
"psutil~=5.9.8",
"pycryptodome~=3.20.0",
"pynumparser~=1.4.1",
"pywidevine~=1.8.0",
"requests>=2.31,<2.34",
"rich~=13.7.1",
"schedule~=1.2.1",
"setproctitle~=1.3.3",
"speedtest-cli~=2.1.3",
"tenacity~=8.2.3",
"textual==1.0.0",
"tqdm~=4.66.4",
"uvloop~=0.21.0; sys_platform == 'linux' or sys_platform == 'linux2'",
"win32-setctime~=1.1.0",
"xxhash~=3.4.1",
"pyyaml>=6.0.2",
"dotenv>=0.9.9",
]
[project.optional-dependencies]
dev = ["autopep8~=2.0.2", "pyinstaller"]
test = [
"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",
]
docs = ["sphinx-argparse~=0.5.2"]
ffmpeg = ["pyffmpeg>=2.5.2.3.1"]
[project.scripts]
ofscraper = "ofscraper.__main__:main"
[project.urls]
"Homepage" = "https://github.com/datawhores/OF-Scraper"
# --- Build System & Tool Configuration ---
# This section tells hatchling how to build the wheel.
[tool.hatch.build.targets.wheel]
packages = ["ofscraper"]
[build-system]
requires = ["hatchling", "version-pioneer"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "version-pioneer"
[tool.version-pioneer]
# This tells the plugin to create a _version.py file inside your ofscraper package.
versionscript = "plugins.py"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]