Directory structure refactoring

This commit is contained in:
jpk 2019-10-19 14:53:45 +02:00
parent f5882933ab
commit 2f653b31ac
8 changed files with 8 additions and 5 deletions

3
.gitignore vendored
View File

@ -1,6 +1,9 @@
*.pyc *.pyc
*.egg-info *.egg-info
.python-version
doc/
build/ build/
dist/ dist/
venv/ venv/

View File

@ -5,8 +5,8 @@
# from the environment for the first two. # from the environment for the first two.
SPHINXOPTS ?= SPHINXOPTS ?=
SPHINXBUILD ?= sphinx-build SPHINXBUILD ?= sphinx-build
SOURCEDIR = source SOURCEDIR = doc/source
BUILDDIR = build BUILDDIR = doc
# Put it first so that "make" without argument is like "make help". # Put it first so that "make" without argument is like "make help".
help: help:

View File

@ -12,7 +12,7 @@
# #
import os import os
import sys import sys
sys.path.insert(0, os.path.abspath('../src')) sys.path.insert(0, os.path.abspath('../../src'))
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------

View File

@ -7,8 +7,8 @@ REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" ( if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build set SPHINXBUILD=sphinx-build
) )
set SOURCEDIR=source set SOURCEDIR=doc\source
set BUILDDIR=build set BUILDDIR=doc
if "%1" == "" goto help if "%1" == "" goto help