-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
62 lines (54 loc) · 1.99 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
[build-system]
requires = ["hatchling", "wheel"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = 'nudecrawler/version.py'
[project]
name="nudecrawler"
authors = [
{name = "Yaroslav Polyakov", email = "[email protected]"},
]
description = "Crawl telegra.ph searching for nudes!"
readme = "README.md"
license = {text = "MIT License"}
keywords = ["nsfw", "tits", "nudity-detection", "nsfw-recognition", "nudes", "onlyfans", "nude", "telegra-ph", "search", "crawler", "scraper", "spider", "scraping", "find", "web-scraping", "crawl", "scrape", "webscraping"]
dynamic = [ "version" ]
requires-python = ">= 3.9"
dependencies = [
'beautifulsoup4>=4.12.0',
'transliterate>=1.10.2',
'pillow>=9.4.0',
'requests>=2.28.2',
'mudepy>=0.5.2',
'numpy<2.0.0',
'evalidate>=2.0.3',
'pytest>=7.2.2',
'nudenet>=3.4.2',
'python-daemon>=3.0.1',
'python-dotenv>=1.0.0',
'flask',
'toml',
'rich'
]
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Games/Entertainment'
]
[project.urls]
Homepage = "https://github.com/yaroslaff/nudecrawler"
Repository = "https://github.com/yaroslaff/nudecrawler.git"
"Bug Tracker" = "https://github.com/yaroslaff/nudecrawler/issues"
Changelog = "https://github.com/yaroslaff/nudecrawler/blob/master/CHANGELOG.md"
[project.scripts]
nudecrawler = "nudecrawler.scripts.nudecrawler:main"
detect-image-aid = "nudecrawler.scripts.detect_image_aid:main"
detect-image-nsfw-api = "nudecrawler.scripts.detect_image_nsfw_api:main"
detect-image-nudenet = "nudecrawler.scripts.detect_image_nudenet:main"
detect-server-nudenet = "nudecrawler.scripts.detect_server_nudenet:main"
nudecrawler-makeurls = "nudecrawler.scripts.nudecrawler_makeurls:main"