-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.38 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[project]
name = "md2bbcode"
description = "Convert Markdown to BBCode using a custom Mistune renderer."
readme = "README.md"
license = "GPL-3.0-or-later"
dynamic = ["version"]
authors = [
{ name = "Redbot", email = "ask@redguides.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Utilities",
"Topic :: Text Processing :: Markup :: Markdown"
]
dependencies = [
"mistune>=3.2.0",
"beautifulsoup4"
]
[project.scripts]
md2bbcode = "md2bbcode.main:main"
md2ast = "md2bbcode.md2ast:main"
html2bbcode = "md2bbcode.html2bbcode:main"
[project.urls]
Repository = "https://github.com/RedGuides/md2bbcode.git"
Issues = "https://github.com/RedGuides/md2bbcode/issues"
Documentation = "https://github.com/RedGuides/md2bbcode#readme"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist]
include = [
"README.md",
"LICENSE",
"src/md2bbcode/*.py",
"src/md2bbcode/plugins/*.py",
"src/md2bbcode/renderers/*.py",
"bb_codes.xml"
]
[tool.hatch.build.targets.wheel]
packages = ["src/md2bbcode"]
include = ["bb_codes.xml"]