-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
35 lines (31 loc) · 997 Bytes
/
pyproject.toml
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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]
[project]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Utilities"
]
dependencies = ["python-gnupg"]
description = 'Export pass(1), "the standard unix password manager", to CSV'
dynamic = ["version"]
keywords = ["csv", "export", "pass2csv"]
maintainers = [
{name = "Rupus Reinefjord", email = "rupus@reinefjord.net"}
]
name = "pass2csv"
readme = "README.md"
requires-python = ">=3.6"
[project.scripts]
pass2csv = "pass2csv:cli"
[project.urls]
Changelog = "https://github.com/reinefjord/pass2csv/releases"
Homepage = "https://github.com/reinefjord/pass2csv"
[tool.setuptools.dynamic]
version = {attr = "pass2csv.__version__"}