-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
34 lines (30 loc) · 920 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
34
import os
from setuptools import setup, find_packages
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "asrpy",
version = "0.0.3",
author = "Dirk Gütlin",
author_email = "dirk.guetlin@gmail.com",
description = ("Artifact Subspace Reconstruction in Python."),
license = "BSD-3",
keywords = "EEG MEG Signal Processing",
url = "https://github.com/DiGyt/asrpy",
package_dir = {"":"asrpy"},
packages = find_packages(where="asrpy"),
include_package_data=True,
long_description=read('README.md'),
long_description_content_type='text/markdown',
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
install_requires=[
"numpy",
"scipy",
"mne",
],
)