To be modified upon project creation
------------------------------------

pygsp         Rename the directory with the package name
setup.py      Insert project name, description, authors, version, dependencies
doc/conf.py   Change package name
pygsp/__init__.py     Change version and release date

Implement code in pygsp/
Implement tests in pygsp/tests/
Implement documentation in doc/
(note that reference documentation goes alongside the code)


File list
---------

*.rst               Part of the documentation
LICENSE.txt         Project license (3-clause BSD)
Makefile            Targets for make : python setup.py test --> make test
MANIFEST.in         List of files to be included
requirements.txt    List of packages installed by pip (strong dep in setup.py)
setup.cfg           Wheel built-package configuration
setup.py            Meta information about package (published on PyPI)
tox.ini             Defines local testing on multiple Python versions
.gitignore          Files ignored by the git revision control system
.travis.yml         Defines testing on Travis continuous integration

pygsp/              Contains the modules (the actual toolbox implementation)
 __init.py__        Load modules at package import
 *.py               One file per module

pygsp/tests/        Contains the test suites (will be distributed to end user)
 __init.py__        Load modules at package import
 test_*.py          One test suite per module
 test_docstrings.py Test the examples in the docstrings (reference doc)
 test_tutorials.py  Test the tutorials in doc/tutorials
 test_all.py        Launch all the tests (docstrings, tutorials, modules)

doc/                Package documentation
 conf.py            Sphinx configuration
 index.rst          Documentation entry page
 *.rst              Include doc files from root directory

doc/reference/      Reference documentation
 index.rst          Reference entry page
 *.rst              Only directives, the actual doc is alongside the code

doc/tutorials/
 index.rst          Tutorials entry page
 *.rst              One file per tutorial
