-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (45 loc) · 1.44 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fastapi_payloadshield"
version = "1.2.4"
description = "Pluggable FastAPI decorators for encrypting/decrypting request and response payloads"
readme = "README.md"
requires-python = ">=3.7"
license = "Apache-2.0"
authors = [
{name = "Ganesh Kandu", email = "kanduganesh@gmail.com"},
]
keywords = ["fastapi", "base64", "crypto", "encryption", "decorator"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: FastAPI",
]
dependencies = [
"fastapi>=0.68.0",
"starlette>=0.19.0",
"compyps>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-asyncio>=0.18.0",
]
[project.urls]
Homepage = "https://github.com/PayloadShield/FastAPIPS"
Repository = "https://github.com/PayloadShield/FastAPIPS.git"
Issues = "https://github.com/PayloadShield/FastAPIPS/issues"
[tool.setuptools]
packages = ["fastapi_payloadshield"]
[tool.setuptools.package-data]
fastapi_payloadshield = ["py.typed"]