about summary refs log tree commit diff
path: root/pyproject.toml
blob: 37b2c799141dee0c02ab4f2b7be872318e700926 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[build-system]
requires = [ "flit_core >=3.2,<4" ]
build-backend = "flit_core.buildapi"

[project]
name = "rsskey"
version = "0.0.1"
description = "RSS feed mirror on Misskey"
readme = "README.md"
requires-python = ">=3.6"
license = { file = "COPYING" }
authors = [ { name = "Nguyễn Gia Phong", email = "mcsinyx@disroot.org" } ]
maintainers = [ { name = "Nguyễn Gia Phong", email = "mcsinyx@disroot.org" } ]
keywords = [ "rss", "misskey" ]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
    "Operating System :: OS Independent",
    "Programming Language :: Python" ]
dependencies = [
    "feedparser", "httpx", "loca", "markdownify", "python-dateutil", "trio" ]
urls = { project = "https://sr.ht/~cnx/rsskey" }