more changes for pypi

Esse commit está contido em:
Robin Tibor Schirrmeister
2017-07-01 18:43:55 +02:00
commit ed8e42de48
8 arquivos alterados com 48 adições e 33 exclusões
+5
Ver Arquivo
@@ -0,0 +1,5 @@
include README.rst
include LICENSE.txt
recursive-include docs *.ipynb *.rst conf.py Makefile
recursive-exclude docs *checkpoint.ipynb
+7 -1
Ver Arquivo
@@ -9,7 +9,13 @@ A deep learning for raw time-domain EEG decoding toolbox.
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
=============
Ver Arquivo
+22
Ver Arquivo
@@ -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:
-22
Ver Arquivo
@@ -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:
-5
Ver Arquivo
@@ -6,14 +6,9 @@ Subpackages
.. toctree::
braindecode.configs
braindecode.csp
braindecode.datasets
braindecode.experiments
braindecode.models
braindecode.modules
braindecode.mywyrm
braindecode.test
braindecode.torchext
Submodules
+8
Ver Arquivo
@@ -28,6 +28,14 @@ braindecode\.torchext\.losses module
:undoc-members:
:show-inheritance:
braindecode\.torchext\.modules module
-------------------------------------
.. automodule:: braindecode.torchext.modules
:members:
:undoc-members:
:show-inheritance:
braindecode\.torchext\.util module
----------------------------------
+6 -5
Ver Arquivo
@@ -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 os import path
here = path.abspath(path.dirname(__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()
@@ -15,7 +15,7 @@ setup(
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# 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.',
long_description=long_description, #this is the
@@ -56,6 +56,7 @@ setup(
# What does your project relate to?
keywords='eeg deep-learning brain-state-decoding',
packages=['braindecode'],
packages=find_packages(),
include_package_data=False,
zip_safe=False,
)