-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 909 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 909 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "supadata"
version = "1.6.0"
authors = [{ name = "Supadata", email = "support@supadata.ai" }]
dependencies = ["requests >= 2.28.1"]
description = "The official Python SDK for Supadata - extract web media data with ease"
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
keywords = ["supadata", "scraping", "media", "web-scraping", "youtube", "tiktok", "instagram", "twitter", "transcripts", "api", "llm", "ai"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
homepage = "https://supadata.ai"
repository = "https://github.com/supadata/py"
documentation = "https://supadata.ai/documentation"
[project.optional-dependencies]
test = [
"pytest >= 7.0.0",
"requests-mock >= 1.11.0",
]