File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- include README.md
1+ # MANIFEST.in - Sadece gerekli dosyaları dahil et
2+
3+ # Zorunlu dosyalar
24include LICENSE
3- recursive-include data *.json
5+ include README.md
6+ include pyproject.toml
7+
8+ # Ana paket (sadece Python dosyaları)
9+ recursive-include kha256 *.py
10+ recursive-include kha256 *.pyi
11+ recursive-include kha256 py.typed
12+
13+ # Global olarak hariç tut (KRİTİK!)
14+ global-exclude *.py[cod]
15+ global-exclude __pycache__
16+ global-exclude *.so
17+ global-exclude *.dylib
18+ global-exclude *.dll
19+ global-exclude .DS_Store
20+ global-exclude *.ipynb
21+ global-exclude *.ipynb_checkpoints
22+
23+ # Gereksiz klasörleri hariç tut
24+ prune binder
25+ prune content
26+ prune data
27+ prune notebooks
28+ prune docs
29+ prune tests
30+ prune test
31+ prune examples
32+ prune .github
33+ prune .git
34+ prune build
35+ prune dist
36+ prune .venv
37+ prune venv
38+ prune .pytest_cache
39+ prune .mypy_cache
40+ prune .tox
41+ prune .eggs
42+ prune *.egg-info
You can’t perform that action at this time.
0 commit comments