-
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.
- Loading branch information
1 parent
936d123
commit abac3c4
Showing
9 changed files
with
6 additions
and
6 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from FillingTimeSeries.FillingMethods import AutoRegression, PrincipalComponentAnalysis | ||
from FillingTimeSeries.FillingMethods import PrincipalComponentAnalysis, Autoregression, ComponentsAutoregression | ||
#These classes will be available to the user |
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -7,15 +7,15 @@ | |
setup( | ||
name = 'FillingTimeSeries', | ||
packages = ['FillingTimeSeries'], | ||
version = '0.9.0', | ||
version = '0.9.1', | ||
license='MIT', # License from here: https://help.github.com/articles/licensing-a-repository | ||
description = 'Filling Time series: Package to fill missing values in geophysical time series in Python', # Short description | ||
long_description = long_description, | ||
long_description_content_type = "text/markdown", | ||
author = 'Rolando Jesus Duarte Mejias, Erick Rivera Fernandez', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/rolandojduartem/FillingTimeSeries', # github or website | ||
download_url = 'https://github.com/rolandojduartem/FillingTimeSeries/archive/refs/tags/v_0_9_0.tar.gz', # Download file | ||
download_url = 'https://github.com/rolandojduartem/FillingTimeSeries/archive/refs/tags/v_0_9_1.tar.gz', # Download file | ||
keywords = ['Time Series', 'Missing values', 'Metereology', "Geophysics", "Metereological"], | ||
setup_requires=['wheel'], | ||
install_requires=[ # I get to this in a second | ||
|