-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
50 lines (42 loc) · 950 Bytes
/
MANIFEST.in
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
# Include license and readme
include LICENSE
include README.md
# Include all requirements files
include requirements.txt
include requirements-dev.txt
include requirements-test.txt
# Include build and configuration files
include pyproject.toml
include setup.py
include Makefile
# Include examples
graft examples
# Include test files
graft tests
# Include docs (if you have them)
graft docs
# Include source files
graft src
# Exclude temporary files and directories
global-exclude __pycache__
global-exclude *.py[cod]
global-exclude *.so
global-exclude .DS_Store
global-exclude *.egg-info
global-exclude *.egg
global-exclude .env*
global-exclude .coverage
global-exclude .pytest_cache
global-exclude .git*
global-exclude .venv*
# Exclude development and test cache directories
prune tests/__pycache__
prune tests/.pytest_cache
prune src/__pycache__
prune .pytest_cache
prune .coverage
prune htmlcov
prune .venv
prune venv
prune build
prune dist