-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
48 lines (40 loc) · 1.03 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
[tool.poetry]
name = "soup2dict"
version = "2.1.0"
description = "Turns your beautifulsoup4 soup into python dictionary or json"
authors = ["Thomas Borgen <thomas@borgenit.no>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/thomasborgen/soup2dict"
homepage = "https://github.com/thomasborgen/soup2dict"
keywords = [
"beautifulsoup to dict",
"beautifulsoup to json",
"beautifulsoup4",
"data transformation",
"html to dict",
"xml to dict",
"dict",
"json"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
python = "^3.7"
classes = "^0.4.0"
beautifulsoup4 = "^4.9.3"
[tool.poetry.dev-dependencies]
wemake-python-styleguide = "^0.16.0"
mypy = "0.910"
safety = "^1.9.0"
pytest = "^6.1.2"
pytest-cov = "^2.10.1"
simplejson = "^3.17.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"