-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
64 lines (59 loc) · 1.64 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "envcloak"
version = "0.3.0"
description = "Securely manage encrypted environment variables with ease."
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Konrad Kurek (Veinar)", email = "conrad.kurek+envcloak@gmail.com" }
]
keywords = [
"environment-variables",
"encryption",
"security",
"cli-tool",
"python"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
"Topic :: Software Development :: Build Tools"
]
dependencies = [
"click>=8.0.0",
"python-dotenv>=0.21.0",
"pyyaml>=5.4.1",
"cryptography>=3.4.7",
"defusedxml>=0.7.1",
"requests>=2.32.3",
"packaging>=24.2",
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"bandit>=1.7.10",
"pylint>=3.3.1",
"black>=22.0",
"hypothesis>=6.0"
]
[project.urls]
"Homepage" = "https://github.com/Veinar/envcloak"
"Bug Tracker" = "https://github.com/Veinar/envcloak/issues"
"Documentation" = "https://github.com/Veinar/envcloak#readme"
[project.scripts]
envcloak = "envcloak.cli:main"
[tool.setuptools.packages.find]
where = ["."]