Skip to content

Commit

Permalink
Merge pull request #18 from mtorabi59/main
Browse files Browse the repository at this point in the history
update packaging
  • Loading branch information
mtorabi59 committed Feb 11, 2024
2 parents 65eeb77 + 0f332ad commit e01c2bc
Show file tree
Hide file tree
Showing 6 changed files with 89 additions and 67 deletions.
38 changes: 19 additions & 19 deletions dFC_methods_demo.ipynb

Large diffs are not rendered by default.

58 changes: 32 additions & 26 deletions multi_analysis_demo.ipynb

Large diffs are not rendered by default.

17 changes: 16 additions & 1 deletion pydfc.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: pydfc
Version: 1.0.1
Version: 1.0.3
Summary: pydfc Python package
Author: Mohammad Torabi
Author-email: mohammad.torabi@mail.mcgill.ca
Expand All @@ -11,5 +11,20 @@ Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Requires-Dist: numpy==1.26.2
Requires-Dist: scipy==1.11.4
Requires-Dist: matplotlib==3.8.2
Requires-Dist: seaborn==0.13.0
Requires-Dist: joblib==1.3.2
Requires-Dist: hdf5storage==0.1.19
Requires-Dist: networkx==3.2.1
Requires-Dist: nilearn==0.10.2
Requires-Dist: pandas==2.1.3
Requires-Dist: scikit-learn==1.3.2
Requires-Dist: ksvd==0.0.3
Requires-Dist: hmmlearn==0.3.0
Requires-Dist: pycwt==0.4.0b0
Requires-Dist: pyclustering
Requires-Dist: statsmodels==0.14.0

This package aims to provide a comprehensive framework for assessing dynamic functional connectivity (dFC) using multiple methods and comparing results across methods.
2 changes: 1 addition & 1 deletion pydfc.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
README.md
README.rst
setup.py
pydfc/__init__.py
pydfc/data_loader.py
Expand Down
28 changes: 14 additions & 14 deletions pydfc.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
numpy
scipy
matplotlib
seaborn
joblib
hdf5storage
networkx
nilearn
pandas
scikit-learn
ksvd
hmmlearn
pycwt
numpy==1.26.2
scipy==1.11.4
matplotlib==3.8.2
seaborn==0.13.0
joblib==1.3.2
hdf5storage==0.1.19
networkx==3.2.1
nilearn==0.10.2
pandas==2.1.3
scikit-learn==1.3.2
ksvd==0.0.3
hmmlearn==0.3.0
pycwt==0.4.0b0
pyclustering
statsmodels
statsmodels==0.14.0
13 changes: 7 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = '1.0.1'
VERSION = '1.0.3'
DESCRIPTION = 'pydfc Python package'
LONG_DESCRIPTION = 'This package aims to provide a comprehensive framework for assessing dynamic functional connectivity (dFC) using multiple methods and comparing results across methods.'

Expand All @@ -14,11 +14,12 @@
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=[
'numpy', 'scipy', 'matplotlib', 'seaborn',
'joblib', 'hdf5storage',
'networkx', 'nilearn', 'pandas', 'scikit-learn',
'ksvd', 'hmmlearn', 'pycwt',
'pyclustering', 'statsmodels',
'numpy==1.26.2', 'scipy==1.11.4', 'matplotlib==3.8.2',
'seaborn==0.13.0', 'joblib==1.3.2', 'hdf5storage==0.1.19',
'networkx==3.2.1', 'nilearn==0.10.2', 'pandas==2.1.3',
'scikit-learn==1.3.2',
'ksvd==0.0.3', 'hmmlearn==0.3.0', 'pycwt==0.4.0b0',
'pyclustering', 'statsmodels==0.14.0',
],

keywords=['python', 'dFC package', 'neuroimaging'],
Expand Down

0 comments on commit e01c2bc

Please sign in to comment.