forked from ppsp-team/HyPyP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 1 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
import os
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name="HyPyP",
version="0.2.0-alpha",
author="Anaël AYROLLLES, Florence BRUN, Phoebe CHEN, Amir DJALOVSKI, Yann BEAUXIS, Suzanne DIKKER, Guillaume DUMAS",
maintainer="Guillaume DUMAS",
maintainer_email="[email protected]",
description="The Hyperscanning Python Pipeline.",
long_description=long_description,
long_description_content_type='text/markdown',
license="BSD",
keywords="hyperscanning, EEG, MEG, pipeline, statistics, visualization",
url="https://github.com/GHFC/HyPyP",
packages=['hypyp'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: BSD License",
],
)