-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMANIFEST.in
More file actions
47 lines (40 loc) · 1007 Bytes
/
MANIFEST.in
File metadata and controls
47 lines (40 loc) · 1007 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
# Include documentation and metadata files
include README.md
include LICENSE
include ../CHANGELOG.md
include ../TECHNICAL_SPECIFICATION.md
# Include package configuration
include pyproject.toml
include setup.cfg
include requirements.txt
include .bandit
# Include examples and tests
recursive-include examples *.py *.pem *.json
recursive-include tests *.py
# Include source code
recursive-include schemapin *.py
recursive-include tools *.py
# Exclude development and build artifacts
global-exclude *.pyc
global-exclude *.pyo
global-exclude *.pyd
global-exclude __pycache__
global-exclude .pytest_cache
global-exclude .coverage
global-exclude .ruff_cache
global-exclude *.egg-info
global-exclude build
global-exclude dist
# Exclude version control
global-exclude .git*
global-exclude .hg*
global-exclude .svn*
# Exclude IDE files
global-exclude .vscode
global-exclude .idea
global-exclude *.swp
global-exclude *.swo
global-exclude *~
# Exclude OS files
global-exclude .DS_Store
global-exclude Thumbs.db