forked from psf/requests-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (42 loc) · 957 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "requests-htmlc"
license={text="MIT License"}
authors = [
{name = "Christian Boin"},
]
version = "0.0.7"
description = "Fork of requests-html, powered by playwright"
readme = "README.md"
requires-python = ">=3.11"
dynamic = ["dependencies"]
[tool.setuptools]
py-modules = ["requests_html"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.optional-dependencies]
# these dependencies are required for development,
# not for running the package.
dev = [
"black",
"click",
"isort",
"pytest",
"pytest-cov",
"requests-file",
# e1839a8 = {path = ".",editable = true}
"pytest-asyncio",
# docs
"mkdocs",
"mkdocs-material",
"mike",
"mkdocstrings-python"
]
package = [
"build",
"twine"
]
[tool.setuptools.packages.find]
exclude = ["junit", "LISENSE"]