-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 993 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 993 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
31
32
33
34
35
36
37
38
39
[build-system]
requires = ["uv_build>=0.9.18,<0.10.0"]
build-backend = "uv_build"
[project]
name = "missAV_api"
version = "1.5.0"
description = "A Python API for the Porn Site missav.ws"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
license = "LGPL-3.0-only"
license-files = ["LICENSE"]
authors = [
{ name = "Johannes Habel", email = "EchterAlsFake@proton.me" }
]
dependencies = [
"bs4",
"eaf_base_api",
"m3u8",
]
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python",
]
[project.optional-dependencies]
av = ["av; python_version >= '3.10'"]
full = ["lxml", "httpx[http2]", "httpx[socks]"] # H2 for HTTP 2.0 support, LXML for faster parsing speed, though optional :)
[project.urls]
Homepage = "https://github.com/EchterAlsFake/missAV_api"
[tool.setuptools]
packages = { find = {} }
[tool.uv.build-backend]
module-name = "missav_api"
module-root = ""