forked from nbara/python-meegkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 999 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 999 Bytes
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
#! /usr/bin/env python
#
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf8") as fid:
long_description = fid.read()
setup(
name='meegkit',
description='M/EEG denoising in Python',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/nbara/python-meegkit/',
author='Nicolas Barascud',
author_email='nicolas.barascud@gmail.com',
license='BSD (3-clause)',
version='0.1.3',
packages=find_packages(exclude=['doc', 'tests']),
project_urls={
"Documentation": "https://nbara.github.io/python-meegkit/",
"Source": "https://github.com/nbara/python-meegkit/",
"Tracker": "https://github.com/nbara/python-meegkit/issues/",
},
platforms="any",
python_requires=">=3.7",
install_requires=["numpy", "scipy", "scikit-learn", "joblib", "pandas",
"matplotlib", "tqdm", "pyriemann", "statsmodels"],
zip_safe=False)