Skip to content

Commit

Permalink
Added Full Method
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandojduartem committed Nov 19, 2021
1 parent 936d123 commit abac3c4
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion FillingTimeSeries/FillingMethods.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Note: V 0.9.0 Originally, filling data methods was developed by Eric Alfaro and Javier Soley in SCILAB
Note: V 0.9.1 Originally, filling data methods was developed by Eric Alfaro and Javier Soley in SCILAB
Python version was developed by Rolando Duarte and Erick Rivera
Centro de Investigaciones Geofísicas (CIGEFI)
Universidad de Costa Rica (UCR)
Expand Down
2 changes: 1 addition & 1 deletion FillingTimeSeries/PreprocessingFillingMethods.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Note: V 0.9.0 Originally, filling data methods was developed by Eric Alfaro and Javier Soley in SCILAB
Note: V 0.9.1 Originally, filling data methods was developed by Eric Alfaro and Javier Soley in SCILAB
Python version was developed by Rolando Duarte and Erick Rivera
Centro de Investigaciones Geofísicas (CIGEFI)
Universidad de Costa Rica (UCR)
Expand Down
2 changes: 1 addition & 1 deletion FillingTimeSeries/__init__.py
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Filling Time Series (v.0.9.0)
# Filling Time Series (v.0.9.1)

## Filling missing values in geophysical time series

Expand Down
Binary file removed dist/FillingTimeSeries-0.9.0-py3-none-any.whl
Binary file not shown.
Binary file removed dist/FillingTimeSeries-0.9.0.tar.gz
Binary file not shown.
Binary file added dist/FillingTimeSeries-0.9.1-py3-none-any.whl
Binary file not shown.
Binary file added dist/FillingTimeSeries-0.9.1.tar.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit abac3c4

Please sign in to comment.