-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1.02 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "codewopr"
version = "0.1.0"
description = "SAST scanner and management interface powered by OpenAI"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Your Name" }]
dependencies = [
"fastapi>=0.111.0",
"uvicorn[standard]>=0.30.0",
"sqlalchemy>=2.0.0",
"psycopg[binary]>=3.2.0",
"pydantic>=2.7.0",
"python-dotenv>=1.0.0",
"openai>=1.40.0",
"jinja2>=3.1.0",
"python-multipart>=0.0.9",
"croniter>=2.0.5",
"httpx>=0.27.0",
]
[project.optional-dependencies]
dev = ["pytest", "httpx", "ruff", "black"]
[project.scripts]
codewopr-scanner = "scanner.cli:main"
codewopr-manager = "manager.__main__:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["scanner", "manager", "manager.*"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
manager = [
"templates/*.html",
"templates/**/*.html",
"static/*",
"static/**/*",
]