File: pyproject.toml

package info (click to toggle)
python-markuppy 1.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 124 kB
  • sloc: python: 377; makefile: 3
file content (34 lines) | stat: -rw-r--r-- 978 bytes parent folder | download
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "MarkupPy"
version = "1.17"
description = "An HTML/XML generator"
readme = "README.md"
authors = [
    {name = "Daniel Nogradi", email = "nogradi@gmail.com"}
]
maintainers = [
    {name = "Tyler Bakke", email = "tylerbakke@gmail.com"}
]
license = {text = "MIT"}
requires-python = ">=2.7"
classifiers = [
    "Environment :: Console",
    "Programming Language :: Python :: 2",
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Topic :: Software Development :: Libraries :: Python Modules",
    "Topic :: Text Processing :: Markup :: HTML",
    "Topic :: Text Processing :: Markup :: XML"
]

[project.urls]
Homepage = "https://github.com/tylerbakke/MarkupPy"
Documentation = "https://tylerbakke.github.io/MarkupPy/"
"Bug Tracker" = "https://github.com/tylerbakke/MarkupPy/issues"

[tool.setuptools]
packages = ["MarkupPy"]