-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (18 loc) · 718 Bytes
/
setup.py
File metadata and controls
25 lines (18 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import find_packages, setup
# https://setuptools.pypa.io/en/latest/references/keywords.html
github_url = 'https://github.com/aliefink/NeuroCluster'
authors = ['Alexandra Fink','Christina Maher','Salman Qasim','Ignacio Saez']
# Get requirements
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(name='NeuroCluster',
version='0.2.0',
description='Non-parametric cluster-based permutation testing with time-frequency resolution',
long_description=open('README.md').read(),
url=github_url,
author=', '.join(authors),
packages=find_packages(),
package_data={'': ['data/*']},
include_package_data=True,
install_requires=required,
)