-
-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy path.npmignore
More file actions
58 lines (52 loc) · 561 Bytes
/
.npmignore
File metadata and controls
58 lines (52 loc) · 561 Bytes
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
# Python files (not needed for npm package)
kubectl_mcp_tool/
*.py
*.pyc
__pycache__/
*.egg-info/
dist/
build/
*.egg
# Development files
.git/
.github/
.gitignore
.venv/
venv/
env/
.env
.pytest_cache/
.mypy_cache/
.tox/
.coverage
htmlcov/
tests/
test_*.py
*_test.py
# Documentation (keep README)
docs/
*.md
!README.md
# Docker files
Dockerfile
docker-compose*.yml
.dockerignore
# IDE files
.idea/
.vscode/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Misc
*.log
*.tmp
install.sh
requirements*.txt
setup.py
setup.cfg
pyproject.toml
MANIFEST.in
Makefile