forked from IBM/mcp-context-forge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
246 lines (218 loc) · 6.67 KB
/
MANIFEST.in
File metadata and controls
246 lines (218 loc) · 6.67 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
# ──────────────────────────────────────────────────────────────
# MANIFEST.in - source-distribution contents for mcpgateway
# ──────────────────────────────────────────────────────────────
# Core project files that SDists/Wheels should always carry
include LICENSE
include README.md
include plugins/README.md
include pyproject.toml
include gunicorn.config.py
include Containerfile.lite
include __init__
include alembic.ini
include tox.ini
include alembic/README
include Cargo.lock
include Cargo.toml
include rust-toolchain.toml
# Top-level config, examples and helper scripts
include *.py
include *.md
include *.example
include *.properties
include *.toml
include *.yaml
include *.yml
include *.json
include *.sh
include *.txt
include *.lua
include *.js
recursive-include tests/async *.py
recursive-include tests/async *.yaml
recursive-include examples *.yaml
recursive-include plugin_templates *
recursive-include mcpgateway/toolops *.md
recursive-include mcpgateway *.proto
# Tooling/lint configuration dot-files (explicit so they're not lost)
include .env.make
include .env.example
include .interrogaterc
include .jshintrc
include .npmrc
include whitesource.config
include .darglint
include .dockerignore
include .flake8
include .htmlhintrc
include .pycodestyle
include .pylintrc*
include .whitesource
include .coveragerc
# include .gitignore # purely optional but many projects ship it
include .bumpversion.cfg
include .yamllint
include .editorconfig
include .snyk
# Runtime data that lives *inside* the package at import time
recursive-include mcpgateway/templates *.html
recursive-include mcpgateway/static *.css *.js *.gif *.png *.svg
exclude mcpgateway/static/iframe-test-harness.html
# Vite build artifacts (gitignored; regenerated per build with hashed filenames)
exclude mcpgateway/static/bundle-*.js
recursive-exclude mcpgateway/static/.vite *
recursive-include mcpgateway *.pyi py.typed
recursive-include mcpgateway *.ico
recursive-include mcpgateway *.json
recursive-include alembic *.mako
recursive-include alembic *.md
recursive-include alembic *.py
# Infrastructure configuration (nginx, monitoring)
recursive-include infra *.conf
recursive-include infra *.html
recursive-include infra *.json
recursive-include infra *.md
recursive-include infra *.sh
recursive-include infra *.yaml
recursive-include infra *.yml
include infra/nginx/Dockerfile
include infra/s390x/Containerfile
# Export/Import functionality (explicitly include new files)
include mcpgateway/cli_export_import.py
include mcpgateway/services/export_service.py
include mcpgateway/services/import_service.py
# 📦 Migration scripts (v0.7.0 multitenancy migration tools)
recursive-include scripts *.py
recursive-include scripts *.sh
# 🧪 Testing documentation and plans
recursive-include tests/manual *.py *.md
# recursive-include deployment *
# recursive-include mcp-servers *
recursive-include plugins *.py
recursive-include plugins *.json
recursive-include plugins *.sh
recursive-include plugins *.yaml
recursive-include plugins *.md
recursive-include plugins *.txt
# Supply-chain policy data shipped in sdist for tooling parity
recursive-include supply-chain *.toml
recursive-include supply-chain *.lock
# Rust workspace (crates/): plugins, gateway_rs, mcp-servers, tools
recursive-include crates *.lock
recursive-include crates *.toml
recursive-include crates *.rs
recursive-include crates *.md
recursive-include crates *.py
recursive-include crates *.pyi
recursive-include crates *.sh
recursive-include crates Makefile
recursive-include crates pyproject.toml
# 5️⃣ (Optional) include MKDocs-based docs in the sdist
# graft docs
# 6️⃣ Never publish caches, compiled or build outputs, deployment, agent_runtimes, etc.
global-exclude __pycache__ *.py[cod] *.so *.dylib
prune build
prune dist
prune .eggs
prune *.egg-info
prune charts
prune k8s
prune .devcontainer
exclude CLAUDE.*
exclude llms-full.txt
exclude AGENTS.md
# Exclude deployment, mcp-servers, agent_runtimes, ansible and llms
prune ansible
prune deployment
prune mcp-servers
prune a2a-agents
prune agent_runtimes
prune llms
prune crates/tools
# Development and CI/CD artifacts
prune .github
prune .hypothesis
prune .benchmarks
prune .claude
prune todo
prune reports
prune logs
# Testing caches
prune .pytest_cache
prune .ruff_cache
prune .mypy_cache
prune htmlcov
global-exclude **/.mypy_cache/*
# Virtual environments (including nested in plugins)
prune venv
prune .venv
prune env
prune node_modules
prune plugins/external/opa/.venv
prune plugins/external/llmguard/.venv
prune plugins/external/cedar/.venv
global-exclude **/.venv/*
# Environment files (security sensitive!)
exclude .env
exclude .env.backup
exclude .env.ce.example
exclude cookies.txt
# Database and runtime files
exclude *.db
exclude *.sqlite
exclude *.log
# Lock files (including nested in plugins)
exclude uv.lock
global-exclude **/uv.lock
# Coverage data
exclude .coverage
exclude .coverage.*
# Additional development config files not needed in package
exclude .travis.yml
exclude .eslintrc.json
exclude eslint.config.js
exclude vitest.config.js
exclude .stylelintrc.json
exclude .markdownlint-cli2.yaml
exclude .spellcheck-en.txt
exclude .prospector.yaml
exclude .hadolint.yaml
exclude .ruff.toml
exclude .pre-commit-config.yaml
exclude .secrets.baseline
exclude .npmrc
# Backup and temporary files
global-exclude *~
global-exclude *.bak
global-exclude *.swp
global-exclude *.swo
global-exclude *.orig
global-exclude *.rej
# OS files
global-exclude .DS_Store
global-exclude Thumbs.db
global-exclude desktop.ini
# Exclude opa
exclude plugins/external/opa/.dockerignore
exclude plugins/external/opa/.env.template
exclude plugins/external/opa/.ruff.toml
exclude plugins/external/opa/Containerfile
exclude plugins/external/opa/MANIFEST.in
exclude plugins/external/opa/opaserver/rego/policy.rego
exclude plugins/external/opa/pyproject.toml
exclude plugins/external/opa/run-server.sh
# Exclude llmguard
exclude plugins/external/llmguard/.dockerignore
exclude plugins/external/llmguard/.env.template
exclude plugins/external/llmguard/.ruff.toml
exclude plugins/external/llmguard/Containerfile
exclude plugins/external/llmguard/MANIFEST.in
exclude plugins/external/llmguard/pyproject.toml
exclude plugins/external/llmguard/run-server.sh
# Exclude cedar
exclude plugins/external/cedar/.dockerignore
exclude plugins/external/cedar/.env.template
exclude plugins/external/cedar/.ruff.toml
exclude plugins/external/cedar/Containerfile
exclude plugins/external/cedar/MANIFEST.in
exclude plugins/external/cedar/pyproject.toml