Skip to content

Commit a5246df

Browse files
author
vm-aifluence-jro
committed
dependencies slighly cleaned, repo renamed
1 parent 2233217 commit a5246df

33 files changed

+346
-1439
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ __pycache__/
44
.ipynb_checkpoints
55
/data
66
/figures
7-
/robust_pca.egg-info
7+
*.egg-info
88
/dist
99
/build

conda.yml

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,31 @@
1-
name: env_rpca
1+
name: env_qolmat
22
channels:
33
- conda-forge
44
- defaults
55
dependencies:
6-
- bump2version==1.0.1
7-
- flake8==4.0.1
8-
- ipykernel==6.9.0
9-
- jupyter==1.0.0
10-
- mypy==0.941
11-
- numpy==1.22.3
12-
- numpydoc==1.1.0
13-
- pandas==1.3.5
14-
- pytest==6.2.5
15-
- pytest-cov==3.0.0
16-
- scikit-learn==1.0.1
17-
- sphinx==4.3.2
18-
- sphinx-gallery==0.10.1
19-
- sphinx_rtd_theme==1.0.0
20-
- twine==3.7.1
21-
- wheel==0.37.0
6+
- bump2version
7+
- flake8
8+
- ipykernel
9+
- jupyter
10+
- mypy
11+
- numpy
12+
- numpydoc
13+
- pandas
14+
- pytest
15+
- pytest-cov
16+
- scikit-learn
17+
- sphinx
18+
- sphinx-gallery
19+
- sphinx_rtd_theme
20+
- twine
21+
- wheel
2222
- jupyterlab
23-
- fbprophet
23+
# - fbprophet
2424
- s3fs
2525
- scikit-optimize
2626
- pyarrow
2727
- matplotlib
28-
- plotly
28+
- plotly
29+
- pip
30+
- pip:
31+
- -e .

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
# -- Project information -----------------------------------------------------
1919

20-
project = "robust-pca"
20+
project = "qolmat"
2121
copyright = "2022, Quantmetry"
2222
author = "Quantmetry"
2323

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: robustpcaEnv
1+
name: env_qolmat
22
channels:
33
- anaconda
44
- plotly

qolmat.egg-info/PKG-INFO

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Metadata-Version: 2.1
2+
Name: qolmat
3+
Version: 0.1
4+
Summary: Tools to compute RPCA
5+
Author: Hong-Lan Botterman, Julien Roussel, Thomas Morzadec
6+
Author-email:
7+
8+
9+
10+
11+
License: new BSD
12+
Platform: UNKNOWN
13+
Requires-Python: >=3.8
14+
Description-Content-Type: text/x-rst
15+
16+
Tools to compute different formulations of RPCA for matrices and times series.
17+

qolmat.egg-info/SOURCES.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
README.rst
2+
setup.py
3+
qolmat/__init__.py
4+
qolmat/_version.py
5+
qolmat.egg-info/PKG-INFO
6+
qolmat.egg-info/SOURCES.txt
7+
qolmat.egg-info/dependency_links.txt
8+
qolmat.egg-info/requires.txt
9+
qolmat.egg-info/top_level.txt
10+
qolmat/tests/__init__.py
11+
qolmat/tests/test_utils.py
12+
qolmat/utils/__init__.py
13+
qolmat/utils/drawing.py
14+
qolmat/utils/utils.py
15+
qolmat/utils/utils_images.py
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

qolmat.egg-info/requires.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
numpy
2+
pandas
3+
matplotlib
4+
plotly
5+
scikit-optimize
6+
scipy
7+
tqdm
8+
pillow
9+
scikit-learn

qolmat.egg-info/top_level.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
qolmat
File renamed without changes.

0 commit comments

Comments
 (0)