forked from neuropower/neuropower-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (36 loc) · 1.03 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
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
setup(
# Application name:
name='neuropower',
# Version number:
version='0.2.5',
# Author details
author='Joke Durnez',
author_email='joke.durnez@gmail.com',
maintainer='Joke Durnez',
maintainer_email='joke.durnez@gmail.com',
# Packages
packages=find_packages(),
#Details
url='https://github.com/neuropower/neuropower-core',
description='A package to perform power analyses for neuroimaging data',
long_description=readme(),
license='MIT',
keywords='statistics power fmri neuroimaging inference samplesize',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'
],
test_suite='nose.collector',
install_requires=[
'numpy>=1.11.0',
'scipy>=0.17.0',
'nibabel>=2.0.2',
'pandas>=0.18.1',
'nose>=1.3.7'
]
)