forked from ghamarian/pythonck
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
38 lines (32 loc) · 943 Bytes
/
MANIFEST.in
File metadata and controls
38 lines (32 loc) · 943 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
include README.md
include LICENSE
include pyproject.toml
include requirements.txt
include conftest.py
# Include all Python files in the main packages
recursive-include pytensor *.py
recursive-include tensor_transforms *.py
recursive-include tile_distribution *.py
# Include documentation files
recursive-include pytensor *.md
recursive-include pytensor *.rst
recursive-include tensor_transforms *.md
recursive-include tile_distribution *.md
# Include examples
recursive-include examples *.py
recursive-include examples *.md
# Exclude test files from the distribution
recursive-exclude tests *
recursive-exclude todelete *
# Exclude development files
exclude *.py
exclude app.py
exclude tensor_transform_app.py
exclude thread_visualization_app.py
exclude tile_distr_thread_mapping.py
# Exclude cache and build files
global-exclude __pycache__
global-exclude *.py[co]
global-exclude *.so
global-exclude .DS_Store
global-exclude *.egg-info