-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (43 loc) · 1.05 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
[project]
name = "scrapedict"
version = "0.3.1"
description = "Scrape HTML to dictionaries"
readme = "README.md"
requires-python = "<4.0,>=3.8"
dependencies = [
"beautifulsoup4<5.0,>=4.4",
"parse<2.0,>=1.18",
"ftfy<7.0.0,>=6.1.1",
"normality<3.0.0,>=2.5.0",
]
authors = [
{name = "Pedro Rodrigues", email = "[email protected]"},
]
[dependency-groups]
dev = [
"pytest<9.0.0,>=8.0.2",
"pytest-markdown-docs<1.0.0,>=0.4.3",
]
[project.urls]
homepage = "https://github.com/medecau/scrapedict"
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[tool.tox]
requires = ["tox>=4.19"]
env_list = ["3.13", "3.8", "doctest", "lint"]
[tool.tox.env_run_base]
description = "Run test under {base_python}"
deps = ["pytest"]
commands = [["pytest"]]
[tool.tox.env.doctest]
description = "Run doctests"
deps = ["pytest", "pytest-markdown-docs"]
commands = [["pytest", "--markdown-docs"]]
[tool.tox.env.lint]
description = "Run linters"
deps = ["ruff"]
commands = [
["ruff", "check", "."],
["ruff", "format", "--check", "."],
]