-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathpyproject.toml
86 lines (79 loc) · 1.96 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "requestium"
version = "0.5.0"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{ name = "Joaquin Alori", email = "[email protected]" }
]
maintainers = [
{ name = "Judson Neer", email = "[email protected]" },
{ name = "Wil T", email = "[email protected]" },
]
dependencies = [
"parsel>=1.0",
"requests>=2.0",
"selenium>=4.0",
"tldextract>=5.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"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",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: OS Independent",
"Environment :: Web Environment",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
]
[project.urls]
source = "https://github.com/tryolabs/requestium"
download = "https://pypi.org/project/requestium/#files"
issues = "https://github.com/tryolabs/requestium/issues"
[project.optional-dependencies]
dev = [
"bandit[sarif]==1.8.3",
"coverage==7.8.0",
"pre-commit==4.2.0",
"pytest-cov==6.1.1",
"pytest-xdist==3.6.1",
"pytest==8.3.5",
"ruff==0.11.5",
]
[tool.ruff]
line-length = 160
target-version = "py39"
include = [
"requestium/**/*.py",
"tests/**/*.py",
]
[tool.pytest.ini_options]
addopts = "--cov=requestium -n auto"
testpaths = [
"tests/",
]
[tool.coverage.run]
branch = true
relative_files = true
command_line = "-m pytest"
[tool.coverage.paths]
source = [
"requestium/",
]
omit = [
"tests/",
]
[tool.coverage.report]
exclude_also = [
"logger.",
]