diff options
| author | Mirek Kratochvil <exa.exa@gmail.com> | 2025-10-13 18:07:46 +0200 |
|---|---|---|
| committer | Mirek Kratochvil <exa.exa@gmail.com> | 2025-10-13 18:07:46 +0200 |
| commit | 94984cecd846ec08f94f53eb1fecf8856776efbd (patch) | |
| tree | 6ec06a305b7b55e8dd37cf02a6941dfba21bb35c /pyproject.toml | |
| parent | f256ed31ca0cf6ad1cbee8e1e1224d26de7b152a (diff) | |
| download | patchodon-94984cecd846ec08f94f53eb1fecf8856776efbd.tar.gz patchodon-94984cecd846ec08f94f53eb1fecf8856776efbd.tar.bz2 | |
conv to pyproject toml
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d3cb064 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,33 @@ +[project] +name = "patchodon" +description="Send and receive git patchsets via Mastodon" +authors = [ + {name = "Mirek Kratochvil", email = "exa.exa@gmail.com"}, +] + +readme = "README.md" +license = "GPL-3.0-or-later" +license-files = ["LICENSE"] +keywords = ["git", "mastodon", "patch"] +classifiers = [ + "Development Status :: 4 - BetaIntended Audience :: Science/Research", + "Operating System :: POSIX", + "Operating System :: Unix", + "Programming Language :: Python :: 3", + "Topic :: Communications", + "Topic :: Software Development :: Version Control :: Git", + "Topic :: Utilities", +] +dynamic = ["version"] + +dependencies=[ + "requests>=2.25", + "html2text>=2025", +] +requires-python = ">= 3" + +[project.urls] +Homepage = "https://gitlab.com/exaexa/patchodon" + +[project.scripts] +patchodon = "patchodon:main" |
