sshare/pyproject.toml

37 lines
967 B
TOML
Raw Normal View History

[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "sshare"
dynamic = ["version"]
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"
[project.urls]
Homepage = "https://forge.monodon.me/Gnarwhal/sshare"
2024-08-28 06:43:21 +00:00
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]
2024-08-28 20:23:52 +00:00
sshare = "sshare.main:main"
2024-09-14 17:56:10 +00:00
sshare-validate = "sshare.validator:main"
[tool.setuptools_scm]
version_file = "src/sshare/version.py"
2024-09-14 18:14:28 +00:00
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib"
]