more changes for pypi
Esse commit está contido em:
@@ -0,0 +1,5 @@
|
|||||||
|
include README.rst
|
||||||
|
include LICENSE.txt
|
||||||
|
|
||||||
|
recursive-include docs *.ipynb *.rst conf.py Makefile
|
||||||
|
recursive-exclude docs *checkpoint.ipynb
|
||||||
@@ -9,7 +9,13 @@ A deep learning for raw time-domain EEG decoding toolbox.
|
|||||||
Installation
|
Installation
|
||||||
============
|
============
|
||||||
|
|
||||||
Install pytorch from http://pytorch.org/.
|
First, install pytorch from http://pytorch.org/.
|
||||||
|
Then, install braindecode via pip:
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
pip install braindecode
|
||||||
|
|
||||||
|
|
||||||
Documentation
|
Documentation
|
||||||
=============
|
=============
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
braindecode\.datasets package
|
||||||
|
=============================
|
||||||
|
|
||||||
|
Submodules
|
||||||
|
----------
|
||||||
|
|
||||||
|
braindecode\.datasets\.signal\_target module
|
||||||
|
--------------------------------------------
|
||||||
|
|
||||||
|
.. automodule:: braindecode.datasets.signal_target
|
||||||
|
:members:
|
||||||
|
:undoc-members:
|
||||||
|
:show-inheritance:
|
||||||
|
|
||||||
|
|
||||||
|
Module contents
|
||||||
|
---------------
|
||||||
|
|
||||||
|
.. automodule:: braindecode.datasets
|
||||||
|
:members:
|
||||||
|
:undoc-members:
|
||||||
|
:show-inheritance:
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
braindecode\.modules package
|
|
||||||
============================
|
|
||||||
|
|
||||||
Submodules
|
|
||||||
----------
|
|
||||||
|
|
||||||
braindecode\.modules\.expression module
|
|
||||||
---------------------------------------
|
|
||||||
|
|
||||||
.. automodule:: braindecode.modules.expression
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
:show-inheritance:
|
|
||||||
|
|
||||||
|
|
||||||
Module contents
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: braindecode.modules
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
:show-inheritance:
|
|
||||||
@@ -6,14 +6,9 @@ Subpackages
|
|||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
|
|
||||||
braindecode.configs
|
|
||||||
braindecode.csp
|
|
||||||
braindecode.datasets
|
braindecode.datasets
|
||||||
braindecode.experiments
|
braindecode.experiments
|
||||||
braindecode.models
|
braindecode.models
|
||||||
braindecode.modules
|
|
||||||
braindecode.mywyrm
|
|
||||||
braindecode.test
|
|
||||||
braindecode.torchext
|
braindecode.torchext
|
||||||
|
|
||||||
Submodules
|
Submodules
|
||||||
|
|||||||
@@ -28,6 +28,14 @@ braindecode\.torchext\.losses module
|
|||||||
:undoc-members:
|
:undoc-members:
|
||||||
:show-inheritance:
|
:show-inheritance:
|
||||||
|
|
||||||
|
braindecode\.torchext\.modules module
|
||||||
|
-------------------------------------
|
||||||
|
|
||||||
|
.. automodule:: braindecode.torchext.modules
|
||||||
|
:members:
|
||||||
|
:undoc-members:
|
||||||
|
:show-inheritance:
|
||||||
|
|
||||||
braindecode\.torchext\.util module
|
braindecode\.torchext\.util module
|
||||||
----------------------------------
|
----------------------------------
|
||||||
|
|
||||||
|
|||||||
+6
-5
@@ -1,11 +1,11 @@
|
|||||||
from setuptools import setup # Always prefer setuptools over distutils
|
from setuptools import setup, find_packages # Always prefer setuptools over distutils
|
||||||
from codecs import open # To use a consistent encoding
|
from codecs import open # To use a consistent encoding
|
||||||
from os import path
|
from os import path
|
||||||
|
|
||||||
here = path.abspath(path.dirname(__file__))
|
here = path.abspath(path.dirname(__file__))
|
||||||
|
|
||||||
# Get the long description from the relevant file
|
# Get the long description from the relevant file
|
||||||
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
|
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
|
||||||
long_description = f.read()
|
long_description = f.read()
|
||||||
|
|
||||||
|
|
||||||
@@ -15,7 +15,7 @@ setup(
|
|||||||
# Versions should comply with PEP440. For a discussion on single-sourcing
|
# Versions should comply with PEP440. For a discussion on single-sourcing
|
||||||
# the version across setup.py and the project code, see
|
# the version across setup.py and the project code, see
|
||||||
# http://packaging.python.org/en/latest/tutorial.html#version
|
# http://packaging.python.org/en/latest/tutorial.html#version
|
||||||
version='0.1.1',
|
version='0.1.2',
|
||||||
|
|
||||||
description='A deep learning for raw time-domain EEG decoding toolbox.',
|
description='A deep learning for raw time-domain EEG decoding toolbox.',
|
||||||
long_description=long_description, #this is the
|
long_description=long_description, #this is the
|
||||||
@@ -56,6 +56,7 @@ setup(
|
|||||||
# What does your project relate to?
|
# What does your project relate to?
|
||||||
keywords='eeg deep-learning brain-state-decoding',
|
keywords='eeg deep-learning brain-state-decoding',
|
||||||
|
|
||||||
packages=['braindecode'],
|
packages=find_packages(),
|
||||||
|
include_package_data=False,
|
||||||
|
zip_safe=False,
|
||||||
)
|
)
|
||||||
|
|||||||
Referência em uma Nova Issue
Bloquear um usuário