-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 1.11 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
[tool.poetry]
name = "html-diff"
version = "0.4.1"
description = "HTML-formatted diff'ing of HTML snippets"
license = "AGPL-3.0+"
authors = ["Quentin Wenger <quentin.wenger@oly-exams.org>"]
readme = "README.md"
homepage = "https://gitlab.com/matpi/html-diff"
repository = "https://gitlab.com/matpi/html-diff"
keywords = ["html", "diff"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development",
"Topic :: Text Processing :: Markup :: HTML",
]
[tool.poetry.dependencies]
python = "^3.5"
beautifulsoup4 = "^4.8"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"