-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
65 lines (58 loc) · 1.66 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
[build-system]
requires = ["hatchling>=1.24.2"]
build-backend = "hatchling.build"
[project]
name = "masquer"
dynamic = ["version"]
description = "A tool to generate random user-agent and referer data for HTTP requests"
authors = [{ name = "Elliott Steer", email = "[email protected]" }]
dependencies = []
requires-python = ">=3.9"
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["requests", "header data", "user-agents"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Natural Language :: English",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
]
[project.optional-dependencies]
extras = [
"beautifulsoup4==4.12.3",
"fastapi==0.111.0",
]
[project.urls]
documentation = "https://github.com/essteer/masquer/blob/main/README.md"
repository = "https://github.com/essteer/masquer"
issues = "https://github.com/essteer/masquer/issues"
docker = "https://hub.docker.com/r/essteer/masquer"
[tool.hatch.version]
path = "src/masquer/__about__.py"
[tool.hatch.build.targets.sdist]
include = [
"src/masquer/**/*.py"
]
exclude = [
"/.github",
"*.json",
"/tests",
".pre-commit-config.yaml",
"update.py"
]
[tool.hatch.build.targets.wheel]
packages = ["src/masquer"]
[tool.uv]
dev-dependencies = [
"hatch==1.11.1",
"hatchling==1.24.2",
"pre-commit==3.7.1",
"ruff==0.4.5",
]