Skip to content

Commit

Permalink
Use pyproject instead of setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
timofurrer committed Oct 9, 2023
1 parent d000e72 commit d622397
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 85 deletions.
39 changes: 39 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[project]
name = "pandoc-plantuml-filter"
authors = [
{name = "Timo Furrer", email = "tuxtimo@gmail.com"},
]
description = "Pandoc filter for PlantUML code blocks"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["plantuml", "pandoc-filter", "pandoc"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pandocfilters",
]
dynamic = ["version"]

[project.scripts]
pandoc-plantuml = "pandoc_plantuml_filter:main"

[tool.setuptools_scm]
85 changes: 0 additions & 85 deletions setup.py

This file was deleted.

0 comments on commit d622397

Please sign in to comment.