Skip to content

Commit ab4f9f5

Browse files
committed
change project configuration to use astral-sh/uv
1 parent 0a5d424 commit ab4f9f5

File tree

3 files changed

+21
-15
lines changed

3 files changed

+21
-15
lines changed

pyproject.toml

+21-15
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,28 @@
1-
[tool.poetry]
1+
[project]
22
name = "scrapedict"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = "Scrape HTML to dictionaries"
5-
authors = ["Pedro Rodrigues <[email protected]>"]
65
readme = "README.md"
7-
homepage = "https://github.com/medecau/scrapedict"
6+
requires-python = "<4.0,>=3.8"
7+
dependencies = [
8+
"beautifulsoup4<5.0,>=4.4",
9+
"parse<2.0,>=1.18",
10+
"ftfy<7.0.0,>=6.1.1",
11+
"normality<3.0.0,>=2.5.0",
12+
]
13+
authors = [
14+
{name = "Pedro Rodrigues", email = "[email protected]"},
15+
]
816

9-
[tool.poetry.dependencies]
10-
python = "^3.8"
11-
beautifulsoup4 = "^4.4"
12-
parse = "^1.18"
13-
ftfy = "^6.1.1"
14-
normality = "^2.5.0"
17+
[dependency-groups]
18+
dev = [
19+
"pytest<9.0.0,>=8.0.2",
20+
"pytest-markdown-docs<1.0.0,>=0.4.3",
21+
]
1522

16-
[tool.poetry.group.dev.dependencies]
17-
pytest = "^7.1"
18-
pytest-markdown-docs = "^0.4.3"
23+
[project.urls]
24+
homepage = "https://github.com/medecau/scrapedict"
1925

2026
[build-system]
21-
requires = ["poetry-core>=1.0.0"]
22-
build-backend = "poetry.core.masonry.api"
27+
requires = ['setuptools']
28+
build-backend = 'setuptools.build_meta'
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)