diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2022-11-09 07:35:40 +0900 |
---|---|---|
committer | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2022-11-09 07:35:40 +0900 |
commit | 81854d85ac7a825f430e925344176abfe3a16e55 (patch) | |
tree | 1c6c9554e72b961665d821be25b4f6f06222cd2a /pyproject.toml | |
parent | f5906a926b80717691ef55bbaf02c9e06c257cbf (diff) | |
download | fead-81854d85ac7a825f430e925344176abfe3a16e55.tar.gz |
Polish for distribution 0.1.0
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..2d50dad --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,23 @@ +[build-system] +requires = [ "flit_core >=3.2,<4" ] +build-backend = "flit_core.buildapi" + +[project] +name = "fead" +readme = "README.md" +requires-python = ">=3.7" +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", "atom" ] +classifiers = [ + "Development Status :: 4 - Beta", + "Environment :: Console", + "Framework :: AsyncIO", + "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Topic :: Utilities" ] +dynamic = [ "version", "description" ] +urls = { git = "https://git.sr.ht/~cnx/fead" } +scripts = { fead = "fead:main" } |