Skip to content

Commit 315d619

Browse files
Update MANIFEST.in
1 parent 8b9408e commit 315d619

1 file changed

Lines changed: 41 additions & 2 deletions

File tree

MANIFEST.in

Lines changed: 41 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
1-
include README.md
1+
# MANIFEST.in - Sadece gerekli dosyaları dahil et
2+
3+
# Zorunlu dosyalar
24
include LICENSE
3-
recursive-include data *.json
5+
include README.md
6+
include pyproject.toml
7+
8+
# Ana paket (sadece Python dosyaları)
9+
recursive-include kececinumbers *.py
10+
recursive-include kececinumbers *.pyi
11+
recursive-include kececinumbers 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

0 commit comments

Comments
 (0)