~dricottone/neopaste

neopaste/pyproject.toml -rw-r--r-- 504 bytes
8a80456fDominic Ricottone Quick fix 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "neopaste"
description = "Paste file streams side-by-side"
readme = "README.md"
version = "1.0.2"
authors = [ { name = "Dominic Ricottone", email = "me@dominic-ricottone.com" } ]
urls = { source = "git.dominic-ricottone.com/~dricottone/neopaste" }
license = { file = "LICENSE.md" }
requires-python = ">=3.6"
dependencies = [
    "wcwidth >= 0.2.4",
]

[project.scripts]
npaste = "neopaste.__main__:main"