-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (30 loc) · 1013 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
[tool.poetry]
name = "secretfs"
version = "0.1.0"
description = "SecretFS is a security focused FUSE filesystem providing fine-grained access control to application secrets in a hardened Linux, MacOS, and FreeBSD."
authors = ["Oscar Ibatullin <oscar.ibatullin@gmail.com>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/obormot/secretfs"
repository = "https://github.com/obormot/secretfs"
exclude = ["secretfs/demo/*"]
keywords = ["security", "secrets", "fuse", "filesystem"]
classifiers = [
"Environment :: Console",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Topic :: System :: Filesystems",
"Topic :: Security"
]
[tool.poetry.dependencies]
python = "^3.8"
psutil = "^5.9.0"
fusepy = "^3.0.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[tool.poetry.scripts]
secretfs = 'secretfs:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"