1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
[build-system]
requires = ["setuptools>=45", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "pyshortcuts/version.py"
version_scheme = "post-release"
[tool.setuptools.packages.find]
include = ["pyshortcuts", "pyshortcuts.icons"]
[tool.coverage.run]
omit = ["tests/*"]
[tool.pytest.ini_options]
addopts = "--cov=pyshortcuts --cov-report html"
[project]
name = "pyshortcuts"
dynamic = ["version"]
dependencies = [
"charset-normalizer",
"pywin32; platform_system=='Windows'",
]
requires-python = ">= 3.10"
authors = [
{name = "Matthew Newville", email = "matt.newville@gmail.com"},
]
description = "Create desktop and Start Menu shortcuts for python scripts"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
keywords = ["desktop shortcuts", "python utilities"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
Homepage = "https://github.com/newville/pyshortcuts/"
Documentation = "https://github.com/newville/pyshortcuts/README.md"
Changelog = "https://github.com/newville/pyshortcuts/issues"
[project.scripts]
pyshortcut = "pyshortcuts:shortcut_cli"
[project.optional-dependencies]
gui = ["wxPython"]
doc = ["Sphinx" ]
dev = ["build", "twine"]
test = ["coverage", "pytest", "pytest-cov"]
all = ["pyshortcuts[dev,gui,doc,test]"]
|