-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Resample and SavGolSmoothing preprocessing
- Loading branch information
1 parent
efa8ec7
commit a5242e6
Showing
8 changed files
with
364 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,39 @@ | ||
[DEFAULT] | ||
# All sections below are required unless otherwise specified. | ||
# See https://github.com/fastai/nbdev/blob/master/settings.ini for examples. | ||
|
||
### Python library ### | ||
repo = soilspectfm | ||
lib_name = %(repo)s | ||
version = 0.0.1 | ||
lib_name = soilspectfm | ||
version = 0.0.2 | ||
min_python = 3.7 | ||
license = apache2 | ||
black_formatting = False | ||
|
||
### nbdev ### | ||
doc_path = _docs | ||
lib_path = soilspectfm | ||
nbs_path = nbs | ||
recursive = True | ||
tst_flags = notest | ||
put_version_in_init = True | ||
|
||
### Docs ### | ||
branch = main | ||
custom_sidebar = True | ||
doc_host = https://%(user)s.github.io | ||
doc_baseurl = /%(repo)s | ||
git_url = https://github.com/%(user)s/%(repo)s | ||
doc_host = https://franckalbinet.github.io | ||
doc_baseurl = /soilspectfm | ||
git_url = https://github.com/franckalbinet/soilspectfm | ||
title = SoilSpecTfm | ||
|
||
### PyPI ### | ||
audience = Developers | ||
author = Franck Albinet | ||
author_email = franckalbinet@gmail.com | ||
copyright = 2025 onwards, %(author)s | ||
copyright = 2025 onwards, Franck Albinet | ||
description = Soil infrared spectra preprocessing utilities | ||
keywords = nbdev jupyter notebook python | ||
language = English | ||
status = 3 | ||
user = franckalbinet | ||
|
||
### Optional ### | ||
requirements = fastcore scikit-learn matplotlib PyWavelets | ||
dev_requirements = soilspecdata nbdev ipykernel | ||
# dev_requirements = | ||
# console_scripts = | ||
readme_nb = index.ipynb | ||
allowed_metadata_keys = | ||
allowed_cell_metadata_keys = | ||
jupyter_hooks = False | ||
clean_ids = True | ||
clear_all = False | ||
cell_number = True | ||
skip_procs = | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.0.1" | ||
__version__ = "0.0.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters