-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
34 lines (30 loc) · 963 Bytes
/
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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
try:
with open('README.md') as f:
readme = f.read()
except FileNotFoundError:
readme = ""
LICENSE = 'MIT'
setup(
name='timecorr',
version='0.1.7',
description='Compute dynamic correlations, dynamic higher-order correlations, and dynamic graph theoretic measures in timeseries data',
long_description=readme,
long_description_content_type='text/markdown',
author='Contextual Dynamics Laboratory',
author_email='contextualdynamics@gmail.com',
url='https://github.com/ContextLab/timecorr',
license=LICENSE,
install_requires=[
'nose>=1.3.7',
'sphinx>=2.0.0',
'duecredit>=0.7.0',
'hypertools>=0.7.0',
'scipy>=1.2.1',
'scikit-learn>=0.19.2'
],
packages=find_packages(exclude=('tests', 'docs')),
)
#'brainconn @ git+https://github.com/FIU-Neuro/brainconn#egg=brainconn-0.1.0'