-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
32 lines (26 loc) · 1.04 KB
/
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
# https://packaging.python.org/guides/using-manifest-in/
# Include
include requirements.txt
include LICENSE
#
#graft src # Add all files under directories src
#graft data # Add all files under directories data
# Remove all files under directories
#prune test
prune sp_bh_pcj_2020_2035/data/input
prune sp_bh_pcj_2020_2035/data/output/gpkg
prune sp_bh_pcj_2020_2035/data/output/geojson
prune sp_bh_pcj_2020_2035/data/output/tab
#recursive-include YourPackage/data/*.csv
# Excluí
exclude sp_bh_pcj_2020_2035/data/output/geo/uso*da*terra*-*poligonos.7z
exclude sp_bh_pcj_2020_2035/data/output/geo/área*de*preservação*permanente*-*poligonos.7z
exclude sp_bh_pcj_2020_2035/data/output/geo/inventario*florestal*2020*-*bacia*pcj*-*poligonos.7z
#exclude */*/run.py
#exclude */run.py
#global-exclude run.py
global-exclude *.gpkg
# Excluí
global-exclude __pycache__
global-exclude *.py[cod] # The square brackets are for matching any one of the characters, so it matches .pyc, .pyo and .pyd
global-exclude *.ipynb_checkpoints/