sshare/pyproject.toml

31 lines
801 B
TOML
Raw Permalink Normal View History

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sshare"
2024-08-01 18:18:50 +00:00
version = "1.1.0"
authors = [
{ name = "Gnarwhal", email = "git.aspect893@passmail.net" },
]
description = "Upload files to a server via ssh"
readme = "README.md"
classifiers = [
"Intended Audience :: End Users/Desktop",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
2024-08-01 01:14:10 +00:00
requires-python = ">=3.11"
dependencies = [
"pyclip",
]
[project.urls]
Homepage = "https://forge.monodon.me/Gnarwhal/sshare"
Documentation= "https://forge.monodon.me/Gnarwhal/sshare/README.md#Usage"
Repository = "https://forge.monodon.me/Gnarwhal/sshare"
Issues = "https://forge.monodon.me/Gnarwhal/sshare/issues"
[project.scripts]
sshare = "sshare.cli:main"