This repository was archived by the owner on Oct 9, 2023. It is now read-only.
forked from DynamicsAndNeuralSystems/pyspi
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
92 lines (85 loc) · 3.19 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
from setuptools import setup, find_packages
# http://www.diveintopython3.net/packaging.html
# https://pypi.python.org/pypi?:action=list_classifiers
with open('README.md') as file:
long_description = file.read()
install_requires = [
'scikit-learn==0.24.1',
'scipy==1.7.3',
'numpy>=1.21.1',
'pandas>=1.3.3',
'statsmodels==0.12.1',
'pyyaml==5.4',
'tqdm==4.50.2',
'nitime==0.9',
'hyppo==0.2.1',
'pyEDM==1.9.3',
'jpype1==1.2.0',
'sktime==0.8.0',
'dill==0.3.2',
'spectral-connectivity==0.2.4.dev0',
'torch==1.10.0',
'cdt==0.5.23',
'oct2py==5.2.0',
'tslearn==0.5.2',
'mne==0.23.0',
'seaborn==0.11.0'
]
testing_extras = [
'pytest==5.4.2', # unittest.TestCase funkyness, see commit 77c1505ab
]
docs_extras = [
'Sphinx >= 3.0.0', # Force RTD to use >= 3.0.0
'docutils',
'pylons-sphinx-themes >= 1.0.8', # Ethical Ads
'pylons_sphinx_latesturl',
'repoze.sphinx.autointerface',
'sphinx-copybutton',
'sphinxcontrib-autoprogram',
]
setup(
name='pyspi',
packages=find_packages(),
package_data={'': ['config.yaml',
'sonnet_config.yaml',
'fast_config.yaml',
'fabfour_config.yaml',
'lib/jidt/infodynamics.jar',
'lib/PhiToolbox/Phi/phi_comp.m',
'lib/PhiToolbox/Phi/phi_star_Gauss.m',
'lib/PhiToolbox/Phi/phi_G_Gauss.m',
'lib/PhiToolbox/Phi/phi_G_Gauss_AL.m',
'lib/PhiToolbox/Phi/phi_G_Gauss_LBFGS.m',
'lib/PhiToolbox/Phi/phi_comp_probs.m',
'lib/PhiToolbox/Phi/phi_Gauss.m',
'lib/PhiToolbox/utility/I_s_I_s_d.m',
'lib/PhiToolbox/utility/data_to_probs.m',
'lib/PhiToolbox/utility/Gauss/Cov_comp.m',
'lib/PhiToolbox/utility/Gauss/Cov_cond.m',
'lib/PhiToolbox/utility/Gauss/H_gauss.m',
'lib/PhiToolbox/utility/Gauss/logdet.m',
'data/cml.npy',
'data/forex.npy']},
include_package_data=True,
version='0.4.0',
description='Network analysis for time series',
author='Oliver M. Cliff',
author_email='[email protected]',
url='https://github.com/olivercliff/pyspi',
long_description=long_description,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 1 - Planning",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"Environment :: Console",
"Environment :: Other Environment",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
],
install_requires=install_requires,
extras_require={'testing': testing_extras, 'docs': docs_extras}
)