plans 1.1.0.post1.dev0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- plans-1.1.0.post1.dev0/.github/workflows/docs.yaml +78 -0
- plans-1.1.0.post1.dev0/.github/workflows/style.yaml +57 -0
- plans-1.1.0.post1.dev0/.github/workflows/tests.yaml +57 -0
- plans-1.1.0.post1.dev0/.gitignore +285 -0
- plans-1.1.0.post1.dev0/CONTRIBUTING.md +529 -0
- plans-1.1.0.post1.dev0/LICENSE +674 -0
- plans-1.1.0.post1.dev0/PKG-INFO +120 -0
- plans-1.1.0.post1.dev0/README.md +87 -0
- plans-1.1.0.post1.dev0/dev/checkout.py +253 -0
- plans-1.1.0.post1.dev0/dev/docs.py +145 -0
- plans-1.1.0.post1.dev0/dev/style.py +21 -0
- plans-1.1.0.post1.dev0/dev/templates/_dist.yaml +67 -0
- plans-1.1.0.post1.dev0/dev/templates/_docs.yaml +78 -0
- plans-1.1.0.post1.dev0/dev/templates/_style.yaml +57 -0
- plans-1.1.0.post1.dev0/dev/templates/_tests.yaml +57 -0
- plans-1.1.0.post1.dev0/dev/tests.py +138 -0
- plans-1.1.0.post1.dev0/docs/_templates/.gitkeep +2 -0
- plans-1.1.0.post1.dev0/docs/_templates/fig.rst +7 -0
- plans-1.1.0.post1.dev0/docs/_templates/file_entry_infotable.rst +39 -0
- plans-1.1.0.post1.dev0/docs/_templates/file_entry_raster.rst +25 -0
- plans-1.1.0.post1.dev0/docs/_templates/file_entry_table.rst +31 -0
- plans-1.1.0.post1.dev0/docs/_templates/page.rst +33 -0
- plans-1.1.0.post1.dev0/docs/about.rst +77 -0
- plans-1.1.0.post1.dev0/docs/api.rst +30 -0
- plans-1.1.0.post1.dev0/docs/api_datasets.rst +19 -0
- plans-1.1.0.post1.dev0/docs/api_hydrology.rst +19 -0
- plans-1.1.0.post1.dev0/docs/api_main.rst +24 -0
- plans-1.1.0.post1.dev0/docs/api_parsers.rst +19 -0
- plans-1.1.0.post1.dev0/docs/api_utils.rst +14 -0
- plans-1.1.0.post1.dev0/docs/cases.rst +16 -0
- plans-1.1.0.post1.dev0/docs/conf.py +159 -0
- plans-1.1.0.post1.dev0/docs/data/.gitkeep +2 -0
- plans-1.1.0.post1.dev0/docs/data/dtypes.csv +13 -0
- plans-1.1.0.post1.dev0/docs/data/fields_climate_series.csv +4 -0
- plans-1.1.0.post1.dev0/docs/data/fields_climate_series_lulc_{scenario}.csv +5 -0
- plans-1.1.0.post1.dev0/docs/data/fields_dist_area_hist.csv +3 -0
- plans-1.1.0.post1.dev0/docs/data/fields_lulc_attributes.csv +14 -0
- plans-1.1.0.post1.dev0/docs/data/fields_lulc_series.csv +4 -0
- plans-1.1.0.post1.dev0/docs/data/fields_parameters_info.csv +5 -0
- plans-1.1.0.post1.dev0/docs/data/fields_project_info.csv +3 -0
- plans-1.1.0.post1.dev0/docs/data/fields_qobs_series.csv +3 -0
- plans-1.1.0.post1.dev0/docs/data/fields_simulation_series.csv +26 -0
- plans-1.1.0.post1.dev0/docs/data/fields_soils_attributes.csv +9 -0
- plans-1.1.0.post1.dev0/docs/data/figs.csv +7 -0
- plans-1.1.0.post1.dev0/docs/data/files_input_optional.csv +7 -0
- plans-1.1.0.post1.dev0/docs/data/files_input_required.csv +12 -0
- plans-1.1.0.post1.dev0/docs/data/files_intermediate.csv +8 -0
- plans-1.1.0.post1.dev0/docs/data/files_output.csv +2 -0
- plans-1.1.0.post1.dev0/docs/data/h_fields_parameters_info.csv +22 -0
- plans-1.1.0.post1.dev0/docs/data/h_fields_project_info.csv +6 -0
- plans-1.1.0.post1.dev0/docs/data/samples/climate_series.csv +31 -0
- plans-1.1.0.post1.dev0/docs/data/samples/climate_series_lulc_{scenario}.csv +20 -0
- plans-1.1.0.post1.dev0/docs/data/samples/lulc_attributes.csv +6 -0
- plans-1.1.0.post1.dev0/docs/data/samples/lulc_series.csv +10 -0
- plans-1.1.0.post1.dev0/docs/data/samples/parameters_info.csv +22 -0
- plans-1.1.0.post1.dev0/docs/data/samples/project_info.csv +6 -0
- plans-1.1.0.post1.dev0/docs/data/samples/qobs_series.csv +14 -0
- plans-1.1.0.post1.dev0/docs/data/samples/soils_attributes.csv +5 -0
- plans-1.1.0.post1.dev0/docs/data/system_bounds.csv +3 -0
- plans-1.1.0.post1.dev0/docs/data/system_init.csv +5 -0
- plans-1.1.0.post1.dev0/docs/data/system_parameters.csv +18 -0
- plans-1.1.0.post1.dev0/docs/data/system_variables.csv +26 -0
- plans-1.1.0.post1.dev0/docs/data_structures.rst +529 -0
- plans-1.1.0.post1.dev0/docs/development.rst +8 -0
- plans-1.1.0.post1.dev0/docs/examples.rst +75 -0
- plans-1.1.0.post1.dev0/docs/figs/about.rst +7 -0
- plans-1.1.0.post1.dev0/docs/figs/infiltration_pot.rst +7 -0
- plans-1.1.0.post1.dev0/docs/figs/logo.rst +5 -0
- plans-1.1.0.post1.dev0/docs/figs/model_phases.rst +7 -0
- plans-1.1.0.post1.dev0/docs/figs/model_structure.rst +7 -0
- plans-1.1.0.post1.dev0/docs/figs/riparian_wetlands.rst +7 -0
- plans-1.1.0.post1.dev0/docs/files.rst +117 -0
- plans-1.1.0.post1.dev0/docs/files_index.rst +24 -0
- plans-1.1.0.post1.dev0/docs/gallery.rst +21 -0
- plans-1.1.0.post1.dev0/docs/includes/.gitkeep +2 -0
- plans-1.1.0.post1.dev0/docs/includes/badge_source.rst +3 -0
- plans-1.1.0.post1.dev0/docs/includes/external_links.rst +55 -0
- plans-1.1.0.post1.dev0/docs/includes/files_abstracts.rst +333 -0
- plans-1.1.0.post1.dev0/docs/includes/files_asc.rst +167 -0
- plans-1.1.0.post1.dev0/docs/includes/files_list.rst +878 -0
- plans-1.1.0.post1.dev0/docs/includes/ipsum.rst +1 -0
- plans-1.1.0.post1.dev0/docs/includes/short_description.rst +2 -0
- plans-1.1.0.post1.dev0/docs/includes/warning_development.rst +4 -0
- plans-1.1.0.post1.dev0/docs/index.rst +44 -0
- plans-1.1.0.post1.dev0/docs/projects.rst +267 -0
- plans-1.1.0.post1.dev0/docs/system.rst +100 -0
- plans-1.1.0.post1.dev0/docs/theory.rst +719 -0
- plans-1.1.0.post1.dev0/docs/userguide.rst +185 -0
- plans-1.1.0.post1.dev0/examples/.gitkeep +2 -0
- plans-1.1.0.post1.dev0/examples/example_project_01.ipynb +176 -0
- plans-1.1.0.post1.dev0/examples/example_raster_01.ipynb +190 -0
- plans-1.1.0.post1.dev0/pyproject.toml +186 -0
- plans-1.1.0.post1.dev0/setup.cfg +4 -0
- plans-1.1.0.post1.dev0/src/plans/__init__.py +41 -0
- plans-1.1.0.post1.dev0/src/plans/analyst.py +3092 -0
- plans-1.1.0.post1.dev0/src/plans/config.py +103 -0
- plans-1.1.0.post1.dev0/src/plans/data/.gitkeep +2 -0
- plans-1.1.0.post1.dev0/src/plans/data/fields.csv +61 -0
- plans-1.1.0.post1.dev0/src/plans/data/files.csv +26 -0
- plans-1.1.0.post1.dev0/src/plans/data/tools.csv +2 -0
- plans-1.1.0.post1.dev0/src/plans/datasets/__init__.py +42 -0
- plans-1.1.0.post1.dev0/src/plans/datasets/chrono.py +540 -0
- plans-1.1.0.post1.dev0/src/plans/datasets/core.py +6224 -0
- plans-1.1.0.post1.dev0/src/plans/datasets/spatial.py +1298 -0
- plans-1.1.0.post1.dev0/src/plans/geo.py +1397 -0
- plans-1.1.0.post1.dev0/src/plans/hydrology/__init__.py +42 -0
- plans-1.1.0.post1.dev0/src/plans/hydrology/core.py +723 -0
- plans-1.1.0.post1.dev0/src/plans/hydrology/downscaled.py +1024 -0
- plans-1.1.0.post1.dev0/src/plans/hydrology/upscaled.py +3890 -0
- plans-1.1.0.post1.dev0/src/plans/parsers/__init__.py +40 -0
- plans-1.1.0.post1.dev0/src/plans/parsers/flare.py +484 -0
- plans-1.1.0.post1.dev0/src/plans/parsers/inmet.py +587 -0
- plans-1.1.0.post1.dev0/src/plans/parsers/snirh.py +219 -0
- plans-1.1.0.post1.dev0/src/plans/project.py +964 -0
- plans-1.1.0.post1.dev0/src/plans/qutils.py +3648 -0
- plans-1.1.0.post1.dev0/src/plans/root.py +2256 -0
- plans-1.1.0.post1.dev0/src/plans/tools/__init__.py +0 -0
- plans-1.1.0.post1.dev0/src/plans/tools/analysis_climate_series_lulc.py +231 -0
- plans-1.1.0.post1.dev0/src/plans/tools/analysis_dto.py +193 -0
- plans-1.1.0.post1.dev0/src/plans/tools/analysis_lulc_parameters.py +269 -0
- plans-1.1.0.post1.dev0/src/plans/tools/analysis_lulc_series.py +220 -0
- plans-1.1.0.post1.dev0/src/plans/tools/analysis_soils_parameters.py +253 -0
- plans-1.1.0.post1.dev0/src/plans/tools/core.py +559 -0
- plans-1.1.0.post1.dev0/src/plans/tools/demo.py +168 -0
- plans-1.1.0.post1.dev0/src/plans/viewer.py +414 -0
- plans-1.1.0.post1.dev0/src/plans.egg-info/PKG-INFO +120 -0
- plans-1.1.0.post1.dev0/src/plans.egg-info/SOURCES.txt +152 -0
- plans-1.1.0.post1.dev0/src/plans.egg-info/dependency_links.txt +1 -0
- plans-1.1.0.post1.dev0/src/plans.egg-info/requires.txt +21 -0
- plans-1.1.0.post1.dev0/src/plans.egg-info/top_level.txt +1 -0
- plans-1.1.0.post1.dev0/tests/__init__.py +0 -0
- plans-1.1.0.post1.dev0/tests/bcmk/.gitkeep +0 -0
- plans-1.1.0.post1.dev0/tests/bcmk/__init__.py +38 -0
- plans-1.1.0.post1.dev0/tests/bcmk/core.py +197 -0
- plans-1.1.0.post1.dev0/tests/bcmk/qutils_tester.py +194 -0
- plans-1.1.0.post1.dev0/tests/bcmk/test_geo.py +161 -0
- plans-1.1.0.post1.dev0/tests/bcmk/test_tools.py +517 -0
- plans-1.1.0.post1.dev0/tests/conftest.py +291 -0
- plans-1.1.0.post1.dev0/tests/data/.gitkeep +0 -0
- plans-1.1.0.post1.dev0/tests/data/DataSet_boot.csv +9 -0
- plans-1.1.0.post1.dev0/tests/data/DataSet_data.csv +7 -0
- plans-1.1.0.post1.dev0/tests/data/FileSys_boot.csv +8 -0
- plans-1.1.0.post1.dev0/tests/data/FileSys_data.csv +6 -0
- plans-1.1.0.post1.dev0/tests/data/MbaE_boot.csv +3 -0
- plans-1.1.0.post1.dev0/tests/data/Project_boot.csv +6 -0
- plans-1.1.0.post1.dev0/tests/data/datasets.csv +2 -0
- plans-1.1.0.post1.dev0/tests/data/template1.txt +1 -0
- plans-1.1.0.post1.dev0/tests/unit/.gitkeep +0 -0
- plans-1.1.0.post1.dev0/tests/unit/__init__.py +38 -0
- plans-1.1.0.post1.dev0/tests/unit/test_geo_Solar.py +351 -0
- plans-1.1.0.post1.dev0/tests/unit/test_root_DataSet.py +146 -0
- plans-1.1.0.post1.dev0/tests/unit/test_root_FileSys.py +180 -0
- plans-1.1.0.post1.dev0/tests/unit/test_root_MbaE.py +169 -0
- plans-1.1.0.post1.dev0/tests/unit/test_unit_example.py +175 -0
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
# DOCS WORKFLOW CONFIGURATION FILE
|
|
2
|
+
# #######################################################################
|
|
3
|
+
# Configuration file for build and deploy documentation in
|
|
4
|
+
# GitHub CI services (GitHub Actions and GitHub Pages)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
# SETUP INSTRUCTIONS
|
|
8
|
+
# ***********************************************************************
|
|
9
|
+
# 1) check and config this file (if needed)
|
|
10
|
+
# 2) push repo to main branch on GitHub
|
|
11
|
+
# 3) if workflow passed: go to {Repo} -> Settings -> Pages and set the `gh-pages` as the deployment branch
|
|
12
|
+
# 4) else if workflow failed: check out details where it failed and then try debug config files
|
|
13
|
+
# Important config files:
|
|
14
|
+
# - {repo}/.github/workflows/docs.yml (this file)
|
|
15
|
+
# - {repo}/pyproject.toml (project dependencies, etc)
|
|
16
|
+
# - {repo}/docs/conf.py (sphinx)
|
|
17
|
+
# 5) If passed, the docs website will likely be live at https://{username}/github.io/{repo}
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# WORKFLOW FILE
|
|
21
|
+
# ***********************************************************************
|
|
22
|
+
|
|
23
|
+
# Workflow
|
|
24
|
+
# =======================================================================
|
|
25
|
+
name: docs
|
|
26
|
+
|
|
27
|
+
# Triggers
|
|
28
|
+
# =======================================================================
|
|
29
|
+
on:
|
|
30
|
+
push:
|
|
31
|
+
branches: [ main ] # Run whenever you push to main
|
|
32
|
+
|
|
33
|
+
# Permissions
|
|
34
|
+
# =======================================================================
|
|
35
|
+
permissions:
|
|
36
|
+
contents: write # Required for pushing to gh-pages
|
|
37
|
+
|
|
38
|
+
# JOBS
|
|
39
|
+
# =======================================================================
|
|
40
|
+
jobs:
|
|
41
|
+
# BUILD JOB
|
|
42
|
+
build:
|
|
43
|
+
runs-on: ubuntu-latest
|
|
44
|
+
steps:
|
|
45
|
+
# Step 1: Get your code
|
|
46
|
+
# -----------------------------------------------------------------
|
|
47
|
+
- name: Checkout repository
|
|
48
|
+
uses: actions/checkout@v4
|
|
49
|
+
|
|
50
|
+
# Step 2: Setup Python environment
|
|
51
|
+
# -----------------------------------------------------------------
|
|
52
|
+
- name: Setup Python
|
|
53
|
+
uses: actions/setup-python@v4
|
|
54
|
+
with:
|
|
55
|
+
python-version: '3.11'
|
|
56
|
+
|
|
57
|
+
# Step 3: Install project and docs dependencies
|
|
58
|
+
# -----------------------------------------------------------------
|
|
59
|
+
- name: Install dependencies
|
|
60
|
+
# V [CHECK THIS] use the appropriate package manager
|
|
61
|
+
run: |
|
|
62
|
+
python -m pip install --upgrade pip
|
|
63
|
+
pip install .[docs]
|
|
64
|
+
|
|
65
|
+
# Step 4: Build Sphinx docs
|
|
66
|
+
# -----------------------------------------------------------------
|
|
67
|
+
- name: Build HTML
|
|
68
|
+
# V [CHECK THIS] this command may change depending on the package manager
|
|
69
|
+
run: |
|
|
70
|
+
sphinx-build -b html docs docs/_build/html
|
|
71
|
+
|
|
72
|
+
# Step 5: Deploy to GitHub Pages
|
|
73
|
+
# -----------------------------------------------------------------
|
|
74
|
+
- name: Deploy to GitHub Pages
|
|
75
|
+
uses: peaceiris/actions-gh-pages@v4
|
|
76
|
+
with:
|
|
77
|
+
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
78
|
+
publish_dir: ./docs/_build/html
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# STYLE WORKFLOW CONFIGURATION FILE
|
|
2
|
+
# #######################################################################
|
|
3
|
+
# Configuration file for checking code style consistency
|
|
4
|
+
# GitHub CI services (GitHub Actions and GitHub Pages)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
# WORKFLOW FILE
|
|
8
|
+
# ***********************************************************************
|
|
9
|
+
|
|
10
|
+
# Workflow
|
|
11
|
+
# =======================================================================
|
|
12
|
+
name: style
|
|
13
|
+
|
|
14
|
+
# Triggers
|
|
15
|
+
# =======================================================================
|
|
16
|
+
on:
|
|
17
|
+
push:
|
|
18
|
+
branches: [ main ]
|
|
19
|
+
pull_request:
|
|
20
|
+
branches: [ main ]
|
|
21
|
+
|
|
22
|
+
# Permissions
|
|
23
|
+
# =======================================================================
|
|
24
|
+
# no permissions
|
|
25
|
+
|
|
26
|
+
# JOBS
|
|
27
|
+
# =======================================================================
|
|
28
|
+
jobs:
|
|
29
|
+
# BUILD JOB
|
|
30
|
+
black:
|
|
31
|
+
runs-on: ubuntu-latest
|
|
32
|
+
steps:
|
|
33
|
+
# Step 1: Get your code
|
|
34
|
+
# -----------------------------------------------------------------
|
|
35
|
+
- name: Checkout repository
|
|
36
|
+
uses: actions/checkout@v4
|
|
37
|
+
|
|
38
|
+
# Step 2: Setup Python environment
|
|
39
|
+
# -----------------------------------------------------------------
|
|
40
|
+
- name: Setup Python
|
|
41
|
+
uses: actions/setup-python@v4
|
|
42
|
+
with:
|
|
43
|
+
python-version: '3.11' # <-- [CHECK THIS] Specs the version you use locally
|
|
44
|
+
|
|
45
|
+
# Step 3: Install dev dependencies
|
|
46
|
+
# -----------------------------------------------------------------
|
|
47
|
+
- name: Install dependencies
|
|
48
|
+
# V [CHECK THIS] use the appropriate package manager
|
|
49
|
+
# V [CHECK THIS] black must be listed in pyproject.toml dev dependencies
|
|
50
|
+
run: |
|
|
51
|
+
python -m pip install --upgrade pip
|
|
52
|
+
pip install black
|
|
53
|
+
|
|
54
|
+
# Step 4: Check black
|
|
55
|
+
# -----------------------------------------------------------------
|
|
56
|
+
- name: Run Black
|
|
57
|
+
run: black --check .
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# STYLE WORKFLOW CONFIGURATION FILE
|
|
2
|
+
# #######################################################################
|
|
3
|
+
# Configuration file for checking code style consistency
|
|
4
|
+
# GitHub CI services (GitHub Actions and GitHub Pages)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
# WORKFLOW FILE
|
|
8
|
+
# ***********************************************************************
|
|
9
|
+
|
|
10
|
+
# Workflow
|
|
11
|
+
# =======================================================================
|
|
12
|
+
name: tests
|
|
13
|
+
|
|
14
|
+
# Triggers
|
|
15
|
+
# =======================================================================
|
|
16
|
+
on:
|
|
17
|
+
push:
|
|
18
|
+
branches: [ main ]
|
|
19
|
+
pull_request:
|
|
20
|
+
branches: [ main ]
|
|
21
|
+
|
|
22
|
+
# Permissions
|
|
23
|
+
# =======================================================================
|
|
24
|
+
# no permissions
|
|
25
|
+
|
|
26
|
+
# JOBS
|
|
27
|
+
# =======================================================================
|
|
28
|
+
jobs:
|
|
29
|
+
# BUILD JOB
|
|
30
|
+
black:
|
|
31
|
+
runs-on: ubuntu-latest
|
|
32
|
+
steps:
|
|
33
|
+
# Step 1: Get your code
|
|
34
|
+
# -----------------------------------------------------------------
|
|
35
|
+
- name: Checkout repository
|
|
36
|
+
uses: actions/checkout@v4
|
|
37
|
+
|
|
38
|
+
# Step 2: Setup Python environment
|
|
39
|
+
# -----------------------------------------------------------------
|
|
40
|
+
- name: Setup Python
|
|
41
|
+
uses: actions/setup-python@v4
|
|
42
|
+
with:
|
|
43
|
+
python-version: '3.11'
|
|
44
|
+
|
|
45
|
+
# Step 3: Install dev dependencies
|
|
46
|
+
# -----------------------------------------------------------------
|
|
47
|
+
- name: Install dependencies
|
|
48
|
+
# V [CHECK THIS] use the appropriate package manager
|
|
49
|
+
# V [CHECK THIS] include extra testing dependencies if needed
|
|
50
|
+
run: |
|
|
51
|
+
python -m pip install --upgrade pip
|
|
52
|
+
pip install .
|
|
53
|
+
|
|
54
|
+
# Step 4: Run unit tests
|
|
55
|
+
# -----------------------------------------------------------------
|
|
56
|
+
- name: Run Tests
|
|
57
|
+
run: python -m unittest discover -s tests -p "test_*.py"
|
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
# GIT IGNORE CONFIGURATION FILE
|
|
2
|
+
########################################################################
|
|
3
|
+
# This file sets everything that Git will NOT track in the project
|
|
4
|
+
|
|
5
|
+
# CUSTOM IGNORE STATEMENTS
|
|
6
|
+
# ***********************************************************************
|
|
7
|
+
# [CHECK THIS] This section applies custom ignores that you may want to change
|
|
8
|
+
|
|
9
|
+
# Files
|
|
10
|
+
# =======================================================================
|
|
11
|
+
|
|
12
|
+
# Local configs [CHECK THIS]
|
|
13
|
+
# -----------------------------------------------------------------------
|
|
14
|
+
.pre-commit-config.yaml
|
|
15
|
+
# ... [ADD MORE IF NEEDED]
|
|
16
|
+
|
|
17
|
+
# Non-sense script files
|
|
18
|
+
# -----------------------------------------------------------------------
|
|
19
|
+
bench*.py
|
|
20
|
+
# ... [ADD MORE IF NEEDED]
|
|
21
|
+
|
|
22
|
+
# Deprecated files conventions (e.g. '__mymodule.py')
|
|
23
|
+
# -----------------------------------------------------------------------
|
|
24
|
+
__*.*
|
|
25
|
+
# exception to ignore
|
|
26
|
+
!__init__.py
|
|
27
|
+
# ... [ADD MORE IF NEEDED]
|
|
28
|
+
|
|
29
|
+
# Heavy data files
|
|
30
|
+
# -----------------------------------------------------------------------
|
|
31
|
+
*.zip
|
|
32
|
+
# ... [ADD MORE IF NEEDED]
|
|
33
|
+
|
|
34
|
+
# Folders
|
|
35
|
+
# =======================================================================
|
|
36
|
+
|
|
37
|
+
# Docs
|
|
38
|
+
# -----------------------------------------------------------------------
|
|
39
|
+
# heavy assets
|
|
40
|
+
docs/assets
|
|
41
|
+
|
|
42
|
+
# Tests
|
|
43
|
+
# -----------------------------------------------------------------------
|
|
44
|
+
# any subfolder under tests/data/ is ignored
|
|
45
|
+
tests/data/*/
|
|
46
|
+
|
|
47
|
+
# outputs folder is fully ignored
|
|
48
|
+
tests/outputs/
|
|
49
|
+
# other tests folders
|
|
50
|
+
/docs/datasets/
|
|
51
|
+
/testing
|
|
52
|
+
|
|
53
|
+
# Examples
|
|
54
|
+
# -----------------------------------------------------------------------
|
|
55
|
+
examples/outputs
|
|
56
|
+
|
|
57
|
+
# Non-sense folders
|
|
58
|
+
# -----------------------------------------------------------------------
|
|
59
|
+
extra/
|
|
60
|
+
misc/
|
|
61
|
+
scripts/
|
|
62
|
+
/_scripts/
|
|
63
|
+
old/
|
|
64
|
+
_aux/
|
|
65
|
+
# ... [ADD MORE IF NEEDED]
|
|
66
|
+
|
|
67
|
+
# PyCharm folders
|
|
68
|
+
# -----------------------------------------------------------------------
|
|
69
|
+
/.idea/
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
# GITHUB STANDARD IGNORE STATEMENTS
|
|
73
|
+
# ***********************************************************************
|
|
74
|
+
# Below follows a template from GitHub
|
|
75
|
+
|
|
76
|
+
# Byte-compiled / optimized / DLL files
|
|
77
|
+
__pycache__/
|
|
78
|
+
*.py[codz]
|
|
79
|
+
*$py.class
|
|
80
|
+
|
|
81
|
+
# C extensions
|
|
82
|
+
*.so
|
|
83
|
+
|
|
84
|
+
# Distribution / packaging
|
|
85
|
+
.Python
|
|
86
|
+
build/
|
|
87
|
+
develop-eggs/
|
|
88
|
+
dist/
|
|
89
|
+
downloads/
|
|
90
|
+
eggs/
|
|
91
|
+
.eggs/
|
|
92
|
+
lib/
|
|
93
|
+
lib64/
|
|
94
|
+
parts/
|
|
95
|
+
sdist/
|
|
96
|
+
var/
|
|
97
|
+
wheels/
|
|
98
|
+
share/python-wheels/
|
|
99
|
+
*.egg-info/
|
|
100
|
+
.installed.cfg
|
|
101
|
+
*.egg
|
|
102
|
+
MANIFEST
|
|
103
|
+
|
|
104
|
+
# PyInstaller
|
|
105
|
+
# Usually these files are written by a python script from a template
|
|
106
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
107
|
+
*.manifest
|
|
108
|
+
*.spec
|
|
109
|
+
|
|
110
|
+
# Installer logs
|
|
111
|
+
pip-log.txt
|
|
112
|
+
pip-delete-this-directory.txt
|
|
113
|
+
|
|
114
|
+
# Unit test / coverage reports
|
|
115
|
+
htmlcov/
|
|
116
|
+
.tox/
|
|
117
|
+
.nox/
|
|
118
|
+
.coverage
|
|
119
|
+
.coverage.*
|
|
120
|
+
.cache
|
|
121
|
+
nosetests.xml
|
|
122
|
+
coverage.xml
|
|
123
|
+
*.cover
|
|
124
|
+
*.py.cover
|
|
125
|
+
.hypothesis/
|
|
126
|
+
.pytest_cache/
|
|
127
|
+
cover/
|
|
128
|
+
|
|
129
|
+
# Translations
|
|
130
|
+
*.mo
|
|
131
|
+
*.pot
|
|
132
|
+
|
|
133
|
+
# Django stuff:
|
|
134
|
+
*.log
|
|
135
|
+
local_settings.py
|
|
136
|
+
db.sqlite3
|
|
137
|
+
db.sqlite3-journal
|
|
138
|
+
|
|
139
|
+
# Flask stuff:
|
|
140
|
+
instance/
|
|
141
|
+
.webassets-cache
|
|
142
|
+
|
|
143
|
+
# Scrapy stuff:
|
|
144
|
+
.scrapy
|
|
145
|
+
|
|
146
|
+
# Sphinx documentation
|
|
147
|
+
docs/_build/
|
|
148
|
+
docs/generated
|
|
149
|
+
|
|
150
|
+
# PyBuilder
|
|
151
|
+
.pybuilder/
|
|
152
|
+
target/
|
|
153
|
+
|
|
154
|
+
# Jupyter Notebook
|
|
155
|
+
.ipynb_checkpoints
|
|
156
|
+
|
|
157
|
+
# IPython
|
|
158
|
+
profile_default/
|
|
159
|
+
ipython_config.py
|
|
160
|
+
|
|
161
|
+
# pyenv
|
|
162
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
163
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
164
|
+
# .python-version
|
|
165
|
+
|
|
166
|
+
# pipenv
|
|
167
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
168
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
169
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
170
|
+
# install all needed dependencies.
|
|
171
|
+
#Pipfile.lock
|
|
172
|
+
|
|
173
|
+
# UV
|
|
174
|
+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
175
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
176
|
+
# commonly ignored for libraries.
|
|
177
|
+
#uv.lock
|
|
178
|
+
|
|
179
|
+
# poetry
|
|
180
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
181
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
182
|
+
# commonly ignored for libraries.
|
|
183
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
184
|
+
#poetry.lock
|
|
185
|
+
#poetry.toml
|
|
186
|
+
|
|
187
|
+
# pdm
|
|
188
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
189
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
190
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
191
|
+
#pdm.lock
|
|
192
|
+
#pdm.toml
|
|
193
|
+
.pdm-python
|
|
194
|
+
.pdm-build/
|
|
195
|
+
|
|
196
|
+
# pixi
|
|
197
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
198
|
+
#pixi.lock
|
|
199
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
200
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
201
|
+
.pixi
|
|
202
|
+
|
|
203
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
204
|
+
__pypackages__/
|
|
205
|
+
|
|
206
|
+
# Celery stuff
|
|
207
|
+
celerybeat-schedule
|
|
208
|
+
celerybeat.pid
|
|
209
|
+
|
|
210
|
+
# SageMath parsed files
|
|
211
|
+
*.sage.py
|
|
212
|
+
|
|
213
|
+
# Environments
|
|
214
|
+
.env
|
|
215
|
+
.envrc
|
|
216
|
+
.venv
|
|
217
|
+
env/
|
|
218
|
+
venv/
|
|
219
|
+
ENV/
|
|
220
|
+
env.bak/
|
|
221
|
+
venv.bak/
|
|
222
|
+
|
|
223
|
+
# Spyder project settings
|
|
224
|
+
.spyderproject
|
|
225
|
+
.spyproject
|
|
226
|
+
|
|
227
|
+
# Rope project settings
|
|
228
|
+
.ropeproject
|
|
229
|
+
|
|
230
|
+
# mkdocs documentation
|
|
231
|
+
/site
|
|
232
|
+
|
|
233
|
+
# mypy
|
|
234
|
+
.mypy_cache/
|
|
235
|
+
.dmypy.json
|
|
236
|
+
dmypy.json
|
|
237
|
+
|
|
238
|
+
# Pyre type checker
|
|
239
|
+
.pyre/
|
|
240
|
+
|
|
241
|
+
# pytype static type analyzer
|
|
242
|
+
.pytype/
|
|
243
|
+
|
|
244
|
+
# Cython debug symbols
|
|
245
|
+
cython_debug/
|
|
246
|
+
|
|
247
|
+
# PyCharm
|
|
248
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
249
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
250
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
251
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
252
|
+
#.idea/
|
|
253
|
+
|
|
254
|
+
# Abstra
|
|
255
|
+
# Abstra is an AI-powered process automation framework.
|
|
256
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
257
|
+
# Learn more at https://abstra.io/docs
|
|
258
|
+
.abstra/
|
|
259
|
+
|
|
260
|
+
# Visual Studio Code
|
|
261
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
262
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
263
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
264
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
265
|
+
# .vscode/
|
|
266
|
+
|
|
267
|
+
# Ruff stuff:
|
|
268
|
+
.ruff_cache/
|
|
269
|
+
|
|
270
|
+
# PyPI configuration file
|
|
271
|
+
.pypirc
|
|
272
|
+
|
|
273
|
+
# Cursor
|
|
274
|
+
# Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
|
|
275
|
+
# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
|
|
276
|
+
# refer to https://docs.cursor.com/context/ignore-files
|
|
277
|
+
.cursorignore
|
|
278
|
+
.cursorindexingignore
|
|
279
|
+
|
|
280
|
+
# Marimo
|
|
281
|
+
marimo/_static/
|
|
282
|
+
marimo/_lsp/
|
|
283
|
+
__marimo__/
|
|
284
|
+
|
|
285
|
+
|