forked from gertjanvanzwieten/vimdecrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (38 loc) · 877 Bytes
/
pyproject.toml
File metadata and controls
46 lines (38 loc) · 877 Bytes
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
# For possible options see https://peps.python.org/pep-0621/
[project]
name = "vim-decrypt"
version = "2.0.0"
description = "Command line tool for decrypting vim-blowfish-encrypted files."
readme = "README.rst"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["vim", "blowfish", "decrypt", "encryption"]
authors = [
{name = "Gertjan van Zwieten"}
]
maintainers = [
{name = "Tundish", email = "tundish@gigeconomy.org.uk"}
]
classifiers = [
"Programming Language :: Python"
]
# End of project metadata
dependencies = [
"blowfish >= 0.6.1"
]
[project.scripts]
vim-decrypt = "vimdecrypt:run"
[build-system]
requires = [
"black >= 22.8.0",
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 96
target-version = ["py38"]
[tool.setuptools]
py-modules = [
"vimdecrypt", "test_vimdecrypt"
]