-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (92 loc) · 2.89 KB
/
Copy pathpyproject.toml
File metadata and controls
100 lines (92 loc) · 2.89 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "shadow-stack"
version = "5.0.2"
description = "Inject production-ready modules into any Python or Node project. AI-adaptive, framework-aware, BSL Licensed."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
authors = [
{ name = "ShadowHunter89", email = "shadowhunter89@proton.me" }
]
keywords = [
"fastapi", "django", "flask", "express", "nextjs",
"scaffolding", "boilerplate", "ai-tools", "code-generation",
"production-ready", "saas-toolkit",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: Other/Proprietary License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"click>=8.1.0",
"rich>=13.0.0",
"pynacl>=1.5.0",
]
[project.optional-dependencies]
anthropic = ["anthropic>=0.28.0"]
openai = ["openai>=1.0.0"]
gemini = ["google-generativeai>=0.5.0"]
groq = ["groq>=0.4.0"]
yaml = ["pyyaml>=6.0"]
all = [
"anthropic>=0.28.0",
"openai>=1.0.0",
"google-generativeai>=0.5.0",
"groq>=0.4.0",
"pyyaml>=6.0",
]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.1.0",
"mypy>=1.7.0",
]
[project.urls]
Homepage = "https://github.com/shadowhunter89/shadow-stack"
Documentation = "https://github.com/shadowhunter89/shadow-stack#readme"
Repository = "https://github.com/shadowhunter89/shadow-stack"
Issues = "https://github.com/shadowhunter89/shadow-stack/issues"
Changelog = "https://github.com/shadowhunter89/shadow-stack/releases"
[project.scripts]
shadow-stack = "cli.main:cli"
ss = "cli.main:cli"
[tool.setuptools]
packages = [
"cli",
"scanner",
"adaptor",
"registry",
"upgrader",
"modules",
"modules.ai", "modules.auth", "modules.cost_estimator", "modules.database",
"modules.deployment", "modules.docker", "modules.email", "modules.explain",
"modules.frontend", "modules.logging", "modules.monitoring", "modules.payments",
"modules.queue", "modules.ratelimit", "modules.recipes", "modules.security",
"modules.storage", "modules.tests", "modules.webhooks",
# v5 NEW: Node/Express modules
"modules.node_auth", "modules.node_monitoring", "modules.node_security",
"modules.node_tests", "modules.node_docker",
# v5 NEW: rollback support
"rollback",
# v5 NEW: license/freemium gate
"licensing",
]
include-package-data = true
[tool.setuptools.package-data]
"templates" = ["**/*"]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"