misleep 1.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
misleep-1.0.1/LICENSE ADDED
@@ -0,0 +1,29 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2018, Raphael Vallat
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ 1. Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+
12
+ 2. Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ 3. Neither the name of the copyright holder nor the names of its
17
+ contributors may be used to endorse or promote products derived from
18
+ this software without specific prior written permission.
19
+
20
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
misleep-1.0.1/PKG-INFO ADDED
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.1
2
+ Name: misleep
3
+ Version: 1.0.1
4
+ Summary: MiSleep: Mice Sleep EEG/EMG visualization, scoring and analysis.
5
+ Home-page: https://github.com/BryanWang0702/MiSleep/
6
+ Download-URL: https://github.com/BryanWang0702/MiSleep/
7
+ Author: Xueqiang Wang
8
+ Author-email: swang@gmail.com
9
+ Maintainer: Xueqiang Wang
10
+ Maintainer-email: swang@gmail.com
11
+ License: BSD (3-clause)
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: License :: OSI Approved :: BSD License
18
+ Classifier: Operating System :: POSIX
19
+ Classifier: Operating System :: Unix
20
+ Classifier: Operating System :: MacOS
21
+ License-File: LICENSE
22
+ Requires-Dist: numpy>=1.18.1
23
+ Requires-Dist: matplotlib
24
+ Requires-Dist: scipy
25
+ Requires-Dist: pyedflib
26
+ Requires-Dist: hdf5storage
27
+
28
+ # MiSleep
29
+ MiSleep is for EEG/EMG signal processing and visualization
30
+
31
+ ## Get start
32
+ ```shell
33
+ pip install misleep
34
+ ```
@@ -0,0 +1,7 @@
1
+ # MiSleep
2
+ MiSleep is for EEG/EMG signal processing and visualization
3
+
4
+ ## Get start
5
+ ```shell
6
+ pip install misleep
7
+ ```
@@ -0,0 +1,9 @@
1
+ # -*- coding: UTF-8 -*-
2
+
3
+ from .io import *
4
+ from .preprocessing import *
5
+ from .utils import *
6
+ from .viz import *
7
+
8
+ __author__ = "Xueqiang Wang <swang9194@gmail.com>"
9
+ __version__ = "1.0.1"
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.1
2
+ Name: misleep
3
+ Version: 1.0.1
4
+ Summary: MiSleep: Mice Sleep EEG/EMG visualization, scoring and analysis.
5
+ Home-page: https://github.com/BryanWang0702/MiSleep/
6
+ Download-URL: https://github.com/BryanWang0702/MiSleep/
7
+ Author: Xueqiang Wang
8
+ Author-email: swang@gmail.com
9
+ Maintainer: Xueqiang Wang
10
+ Maintainer-email: swang@gmail.com
11
+ License: BSD (3-clause)
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: License :: OSI Approved :: BSD License
18
+ Classifier: Operating System :: POSIX
19
+ Classifier: Operating System :: Unix
20
+ Classifier: Operating System :: MacOS
21
+ License-File: LICENSE
22
+ Requires-Dist: numpy>=1.18.1
23
+ Requires-Dist: matplotlib
24
+ Requires-Dist: scipy
25
+ Requires-Dist: pyedflib
26
+ Requires-Dist: hdf5storage
27
+
28
+ # MiSleep
29
+ MiSleep is for EEG/EMG signal processing and visualization
30
+
31
+ ## Get start
32
+ ```shell
33
+ pip install misleep
34
+ ```
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ misleep/__init__.py
5
+ misleep.egg-info/PKG-INFO
6
+ misleep.egg-info/SOURCES.txt
7
+ misleep.egg-info/dependency_links.txt
8
+ misleep.egg-info/requires.txt
9
+ misleep.egg-info/top_level.txt
@@ -0,0 +1,5 @@
1
+ numpy>=1.18.1
2
+ matplotlib
3
+ scipy
4
+ pyedflib
5
+ hdf5storage
@@ -0,0 +1 @@
1
+ misleep
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
misleep-1.0.1/setup.py ADDED
@@ -0,0 +1,62 @@
1
+ # -*- coding: UTF-8 -*-
2
+ # Copyright (C) 2024 Xueqiang Wang
3
+
4
+ DESCRIPTION = "MiSleep: Mice Sleep EEG/EMG visualization, scoring and analysis."
5
+ with open("README.md", "r") as f:
6
+ LONG_DESCRIPTION = f.read()
7
+
8
+ DISTNAME = "misleep"
9
+ MAINTAINER = "Xueqiang Wang"
10
+ MAINTAINER_EMAIL = "swang@gmail.com"
11
+ URL = "https://github.com/BryanWang0702/MiSleep/"
12
+ LICENSE = "BSD (3-clause)"
13
+ DOWNLOAD_URL = "https://github.com/BryanWang0702/MiSleep/"
14
+ VERSION = "1.0.1"
15
+
16
+ INSTALL_REQUIRES = [
17
+ "numpy>=1.18.1",
18
+ "matplotlib",
19
+ "scipy",
20
+ "pyedflib",
21
+ "hdf5storage",
22
+ ]
23
+
24
+ PACKAGES = [
25
+ "misleep",
26
+ ]
27
+
28
+ CLASSIFIERS = [
29
+ "Intended Audience :: Science/Research",
30
+ "Programming Language :: Python :: 3.8",
31
+ "Programming Language :: Python :: 3.9",
32
+ "Programming Language :: Python :: 3.10",
33
+ "Programming Language :: Python :: 3.11",
34
+ "License :: OSI Approved :: BSD License",
35
+ "Operating System :: POSIX",
36
+ "Operating System :: Unix",
37
+ "Operating System :: MacOS",
38
+ ]
39
+
40
+ try:
41
+ from setuptools import setup
42
+ except ImportError:
43
+ from distutils.core import setup
44
+
45
+ if __name__ == "__main__":
46
+ setup(
47
+ name=DISTNAME,
48
+ author=MAINTAINER,
49
+ author_email=MAINTAINER_EMAIL,
50
+ maintainer=MAINTAINER,
51
+ maintainer_email=MAINTAINER_EMAIL,
52
+ description=DESCRIPTION,
53
+ long_description=LONG_DESCRIPTION,
54
+ license=LICENSE,
55
+ url=URL,
56
+ version=VERSION,
57
+ download_url=DOWNLOAD_URL,
58
+ install_requires=INSTALL_REQUIRES,
59
+ include_package_data=True,
60
+ packages=PACKAGES,
61
+ classifiers=CLASSIFIERS,
62
+ )