-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
36 lines (33 loc) · 872 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
[project]
name = "pyrasp"
version = "0.8.3"
authors = [
{ name = "Renaud Bidou", email = "renaud@paracyberbellum.io" }
]
description = "Python RASP"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.7"
keywords = [ "rasp", "web application", "security", "xss", "sql injection", "waf", "dlp" ]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Framework :: Flask",
"Framework :: Django",
"Framework :: FastAPI"
]
dependencies = [
"scikit-learn==1.3.0",
"numpy==1.*",
"requests>=2.32.2",
"psutil>=6.0.0",
"pyjwt==2.8.0",
"cloudpickle==3.1.0",
"setuptools>=75.5.0"
]
[project.urls]
Homepage = "https://pyrasp.paracyberbellum.io"
Documentation = "https://paracyberbellum.gitbook.io/pyrasp"
GitHub = "https://github.com/rbidou/pyrasp"
[tool.setuptools.package-data]
pyrasp = ["data/*"]