-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (31 loc) · 953 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
from distutils import sysconfig
from setuptools import setup, Extension, find_packages
import os
import sys
import setuptools
from copy import deepcopy
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pyperm',
install_requires=[
'numpy',
'sanssouci',
'matplotlib',
'scikit-learn',
'scipy',
'scikit-image',
'nilearn'
],
version='0.0.3',
license='MIT',
author='Samuel DAVENPORT',
download_url='https://github.com/sjdavenport/pyperm/',
author_email='samuel.davenport@math.univ-toulouse.fr',
url='https://github.com/sjdavenport/pyperm/',
long_description=long_description,
description='Python Toolbox of Functions for perofrming resampling in large scale datasets',
keywords='Permutation, Bootstrap, fMRI, Post-hoc inference',
packages=find_packages(),
python_requires='>=3',
)