-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 843 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 843 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
[build-system]
requires = ["uv_build>=0.9.18,<0.10.0"]
build-backend = "uv_build"
[project]
name = "Eporner_API"
version = "1.9.7"
description = "A Python API for the Porn Site Eporner.com"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9" # 3.9 due to httpx requirements
license = "LGPL-3.0-only"
license-files = ["LICENSE"]
authors = [
{ name = "Johannes Habel", email = "EchterAlsFake@proton.me" }
]
dependencies = [
"bs4",
"eaf_base_api",
]
classifiers = [
"Programming Language :: Python",
]
[project.optional-dependencies]
full = ["lxml", "httpx[http2]", "httpx[socks]"]
[project.urls]
Homepage = "https://github.com/EchterAlsFake/EPorner_API"
[project.scripts]
eporner_api = "eporner_api.eporner_api:main"
[tool.uv.build-backend]
module-name = "eporner_api"
module-root = ""