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
200 lines (175 loc) · 5.16 KB
/
MANIFEST.in
File metadata and controls
200 lines (175 loc) · 5.16 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
# ──────────────────────────────────────────────────────────────
# 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
include Containerfile.lite
include __init__
include alembic.ini
include tox.ini
include alembic/README
# 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
recursive-include tests/async *.py
recursive-include tests/async *.yaml
recursive-include examples *.yaml
recursive-include plugin_templates *
# Tooling/lint configuration dot-files (explicit so they're not lost)
include .env.make
include .env.example
include .interrogaterc
include .jshintrc
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
recursive-include mcpgateway *.pyi py.typed
recursive-include mcpgateway *.ico
recursive-include alembic *.mako
recursive-include alembic *.md
recursive-include alembic *.py
# nginx configuration and docker files
recursive-include nginx *.conf
recursive-include nginx *.md
include nginx/Dockerfile
# 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 *.sh
recursive-include plugins *.yaml
recursive-include plugins *.md
# Rust plugins (optional - exclude build artifacts)
recursive-include plugins_rust *.rs
recursive-include plugins_rust *.toml
include plugins_rust/Makefile
include plugins_rust/README.md
include plugins_rust/QUICKSTART.md
prune plugins_rust/target
prune plugins_rust/benchmarks
# 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 and llms
prune deployment
prune mcp-servers
prune agent_runtimes
prune llms
# 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
# Virtual environments
prune venv
prune .venv
prune env
prune node_modules
# 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
exclude uv.lock
# Coverage data
exclude .coverage
exclude .coverage.*
# Additional development config files not needed in package
exclude .travis.yml
exclude .eslintrc.json
exclude .stylelintrc.json
exclude .markdownlint-cli2.yaml
exclude .spellcheck-en.txt
exclude .pyspelling.yml
exclude .prospector.yaml
exclude .hadolint.yaml
exclude .ruff.toml
exclude .pre-commit-config.yaml
# 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