-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.52 KB
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "secure-credentials-kit"
version = "0.2.1"
description = "A secure encrypted credentials system for Django and FastAPI, inspired by Rails credentials"
readme = "README.md"
requires-python = ">=3.10,<3.15"
license = "MIT"
license-files = ["LICENSE"]
keywords = ["django", "fastapi", "credentials", "encryption", "security"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: Django",
"Framework :: FastAPI",
"Topic :: Security",
]
dependencies = [
"cryptography>=41.0.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
django = ["Django>=5.2,<6.1"]
fastapi = ["fastapi>=0.100.0"]
[project.scripts]
secure-credentials-kit = "secure_credentials_kit.cli:main"
secure-credentials-kit-edit = "secure_credentials_kit.cli:edit_main"
secure-credentials-kit-generate-key = "secure_credentials_kit.cli:generate_key_main"
[project.urls]
Homepage = "https://github.com/lexpank/secure-credentials-kit"
Issues = "https://github.com/lexpank/secure-credentials-kit/issues"
[tool.setuptools.packages.find]
exclude = ["tests", "examples"]
[dependency-groups]
dev = [
"build>=1.2.0",
"twine>=6.0.0",
]