jekyll-to-hugo/pyproject.toml

44 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2023-06-03 13:08:28 +00:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "jekyll-to-hugo"
2023-06-05 10:52:29 +00:00
version = "0.0.9"
2023-06-03 13:08:28 +00:00
authors = [
{ name="Denis Nutiu", email="nuculabs@outlook.com" },
]
description = "Python library for converting jekyll md files to Hugo."
readme = "readme.md"
2023-06-04 16:33:46 +00:00
requires-python = ">=3.10"
2023-06-03 13:08:28 +00:00
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
2023-06-03 13:29:54 +00:00
dependencies = [
"beautifulsoup4>=4.12, <5",
"PyYAML",
"soupsieve>=2.4, <3",
"pydantic>=1.10, <2",
]
2023-06-03 13:08:28 +00:00
[project.scripts]
2023-06-05 10:52:29 +00:00
jekyll-to-hugo = "app.main:main"
2023-06-03 13:08:28 +00:00
[project.optional-dependencies]
2023-06-05 09:33:04 +00:00
dev = ["black", "isort", "autoflake", "pytest"]
docs = [
"sphinx",
"myst_parser",
"sphinx-autoapi>=2.1.0, <3",
"furo==2023.5.20"
]
2023-06-03 13:08:28 +00:00
[project.urls]
"Homepage" = "https://github.com/dnutiu/jekyll-to-hugo"
"Bug Tracker" = "https://github.com/dnutiu/jekyll-to-hugo/issues"