-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (26 loc) · 950 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "globaleaks_eph_fs"
version = "0.0.3"
authors = [
{ name="Giovanni Pellerano", email="[email protected]" },
]
description = "An ephemeral ChaCha20-encrypted filesystem implementation using fusepy and cryptography suitable for privacy-sensitive applications, such as whistleblowing platforms. "
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
]
dependencies = [
"cryptography",
"fusepy"
]
[project.urls]
Homepage = "https://github.com/globaleaks/globaleaks-eph-fs"
Issues = "https://github.com/globaleaks/globaleaks-eph-fs/issues"
[project.entry-points."console_scripts"]
globaleaks-eph-fs = "globaleaks_eph_fs:main"