-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 879 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 879 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "html2phpbbcode"
version = "0.2.0"
description = "HTML to phpBB-compatible BBCode converter"
readme = "README.md"
requires-python = ">=3.10"
license = "BSD-3-Clause"
authors = [
{ name = "Theodoros Diamantidis", email = "diamaltho@gmail.com" },
]
classifiers = [
"Topic :: Utilities",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
]
dependencies = [
"regex>=2026.4.4",
]
[project.urls]
Homepage = "https://github.com/tdiam/html2phpbbcode"
[dependency-groups]
test = [
"pytest>=7",
]