-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (86 loc) · 1.94 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (86 loc) · 1.94 KB
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 = "illallangi-http"
authors = [
{ name = "Andrew Cole", email = "andrew.cole@illallangi.com" }
]
maintainers = [
{ name = "Andrew Cole", email = "andrew.cole@illallangi.com" }
]
description = "A collection of command line tools to interact with HTTP servers."
readme = "README.md"
requires-python = ">=3.10.1"
dependencies = [
"alive-progress>=3.1.5",
"beautifulsoup4>=4.12.3",
"click>=8.1.7",
"requests>=2.32.3",
"tabulate>=0.9.0",
"yarl>=1.13.1",
]
keywords = [
"http",
"cli",
"tools",
]
version = "0.1.0"
classifiers =[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
]
license = { text = "MIT License" }
[project.scripts]
http-tools = "illallangi.http.tools:cli"
[project.urls]
Homepage = "https://github.com/illallangi/python-http"
Repository = "https://github.com/illallangi/python-http.git"
Issues = "https://github.com/illallangi/python-http/issues"
Changelog = "https://github.com/illallangi/python-http/blob/master/CHANGELOG.md"
[build-system]
requires = [
"ruff>=0.6.9",
"hatchling>=1.25.0",
]
build-backend = "hatchling.build"
[tool.ruff]
lint.select = ["ALL"]
lint.ignore = [
"D",
"COM812",
"E501",
"ISC001",
]
[tool.ruff.lint.pydocstyle]
convention = "pep257"
[tool.uv]
dev-dependencies = [
"ruff>=0.6.9",
"hatchling>=1.25.0",
"commitizen>=3.29.1",
"pre-commit>=4.0.0",
]
[tool.hatch.build.targets.sdist]
exclude = [
"Makefile",
"uv.lock",
]
[tool.hatch.build.targets.wheel]
packages = ["src/illallangi"]
exclude = [
"Makefile",
"uv.lock",
]
[tool.commitizen]
name = "cz_conventional_commits"
version_provider = "pep621"
tag_format = "v$version"
version_files = [
"pyproject.toml:version",
"src/illallangi/http/__version__.py:__version__",
]
pre_bump_hooks = [
"uv sync"
]
update_changelog_on_bump = true
major_version_zero = true