-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
48 lines (39 loc) · 1.04 KB
/
MANIFEST.in
File metadata and controls
48 lines (39 loc) · 1.04 KB
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
# Include documentation
include README.md
include CHANGELOG.md
include LICENSE
# Include configuration files
include pyproject.toml
include .pre-commit-config.yaml
# Include schemas
recursive-include schemas *.json
# Include provider data
recursive-include providers *.yaml *.yml
# Include saidata
recursive-include saidata *.yaml *.yml
# Include examples
recursive-include examples *.yaml *.yml *.json *.py
# Include documentation
recursive-include docs *.md *.txt
# Include scripts
recursive-include scripts *.sh *.py *.ps1
# Include type information
include sai/py.typed
include saigen/py.typed
# Exclude development and build files
exclude .gitignore
exclude .coverage
exclude tox.ini
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
recursive-exclude * *.orig
recursive-exclude * *.rej
recursive-exclude * .DS_Store
recursive-exclude .git *
recursive-exclude .github *
recursive-exclude .venv *
recursive-exclude .pytest_cache *
recursive-exclude build *
recursive-exclude dist *
recursive-exclude *.egg-info *
recursive-exclude tests *