-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.29 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
[project]
name = "htmltab"
version = "0.3.0-dev"
description = "A command-line utility that converts an HTML table into CSV data"
readme = "README.md"
license = { file = "LICENCE" }
requires-python = ">=3.12"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
dependencies = [
"beautifulsoup4 ~= 4.13",
"click ~= 8.1.0",
"lxml ~= 5.3",
"cssselect ~= 1.2",
"requests ~= 2.32",
]
[dependency-groups]
"dev" = [
"pytest ~= 8.3",
"pytest-cov ~= 6.0",
"httmock ~= 1.4",
"types-lxml>=2024.12.13",
"types-requests>=2.32.0.20241016",
"types-beautifulsoup4>=4.12.0.20250204",
]
[project.urls]
Documentation = "https://flother.github.io/htmltab/"
Repository = "https://github.com/flother/htmltab"
Changelog = "https://flother.github.io/htmltab/changelog/"
[project.scripts]
htmltab = "htmltab.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
[tool.pytest.ini_options]
addopts = ["--cov", "htmltab"]
testpaths = ["tests"]