2023-05-26 10:04:06 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "spip2md"
|
2023-06-14 16:40:05 +02:00
|
|
|
version = "0.1.0"
|
2023-05-26 10:04:06 +02:00
|
|
|
description = "Generate a static website with plain Markdown+YAML files from a SPIP CMS database"
|
|
|
|
license = "GPL-2.0"
|
|
|
|
|
|
|
|
authors = [
|
|
|
|
"Guilhem Fauré <guilhem.faure@gfaure.eu>"
|
|
|
|
]
|
|
|
|
|
|
|
|
readme = ["README.md", "LICENSE"]
|
2023-06-16 17:11:32 +02:00
|
|
|
repository = "https://git.irsamc.ups-tlse.fr/LCPQ/spip2md"
|
2023-05-26 10:04:06 +02:00
|
|
|
keywords = ["Markdown", "Static website", "SPIP", "Converter", "Exporter"]
|
|
|
|
|
|
|
|
classifiers = [
|
2023-06-14 16:40:05 +02:00
|
|
|
"Development Status :: 3 - Alpha",
|
2023-05-26 10:04:06 +02:00
|
|
|
"Environment :: Console",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Topic :: Text Processing"
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.9"
|
|
|
|
pyyaml = "^6.0"
|
|
|
|
python-slugify = {extras = ["unidecode"], version = "^8.0.1"}
|
|
|
|
pymysql = "^1.0.3"
|
|
|
|
peewee = "^3.16.2"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2023-05-31 11:31:58 +02:00
|
|
|
spip2md = "spip2md.lib:cli"
|
2023-05-26 10:04:06 +02:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|