-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (47 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
50 lines (47 loc) · 1.52 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "flashshot"
version = "1.0.1"
description = "Screenshot API SDK — capture any website URL and get a hosted image with AI analysis. Supports ad blocking, stealth mode, device emulation, and caching."
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
dependencies = ["requests>=2.20.0"]
keywords = [
"screenshot",
"screenshot-api",
"website-screenshot",
"url-to-image",
"webpage-capture",
"html-to-image",
"headless-browser",
"ai-analysis",
"flashshot",
"screen-capture",
"website-thumbnail",
"ad-blocking",
"stealth-mode",
"device-emulation",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://www.flashshot.dev"
Documentation = "https://www.flashshot.dev/docs"
Repository = "https://github.com/AllenPayne17/flashshot-sdk-python"
Issues = "https://github.com/AllenPayne17/flashshot-sdk-python/issues"
Changelog = "https://github.com/AllenPayne17/flashshot-sdk-python/releases"
[tool.setuptools.packages.find]
include = ["flashshot*"]