git @ Cat's Eye Technologies Feedmark / master pyproject.toml
master

Tree @master (Download .tar.gz)

pyproject.toml @masterraw · history · blame

# Copyright (c) 2019-2024 Chris Pressey, Cat's Eye Technologies
# This file is distributed under an MIT license.  See LICENSES/ directory.
# SPDX-License-Identifier: LicenseRef-MIT-X-Feedmark

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "Feedmark"
version = "0.14"
authors = [
    { name="Chris Pressey", email="packages@catseye.tc" },
]
urls = { website="https://catseye.tc/node/Feedmark" }
description = "Feedmark: a curation-oriented subset of Markdown, and tools for processing it"
readme = "README.md"
license = { file="LICENSE" }
classifiers = [
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
    "Programming Language :: Python :: 2.7",
    "Programming Language :: Python :: 3",
]
requires-python = ">=2.7, >=3.5"
dependencies = [
    "atomize==0.2.0",
    "Markdown==2.6.8",
    "beautifulsoup4==4.6.0",
]

[project.scripts]
feedmark = "feedmark.main:sys_main"