Skip to content

Commit

Permalink
Move source code into src directory; update README and docs config.
Browse files Browse the repository at this point in the history
  • Loading branch information
lapets committed Jun 24, 2022
1 parent dfae2c3 commit 27b3add
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ All unit tests are executed and their coverage is measured when using `pytest <h

Alternatively, all unit tests are included in the module itself and can be executed using `doctest <https://docs.python.org/3/library/doctest.html>`__::

python datatask/datatask.py -v
python src/datatask/datatask.py -v

Style conventions are enforced using `Pylint <https://www.pylint.org>`__::

Expand All @@ -241,7 +241,7 @@ This library can be published as a `package on PyPI <https://pypi.org/project/da

Remove any old build/distribution files and package the source into a distribution archive::

rm -rf build dist *.egg-info
rm -rf build dist src/*.egg-info
python -m build --sdist --wheel .

Finally, upload the package distribution archive to `PyPI <https://pypi.org>`__ using the `twine <https://pypi.org/project/twine>`__ package::
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#
import os
import sys
sys.path.insert(0, os.path.abspath('..'))
sys.path.insert(0, os.path.abspath('../src'))


# -- Project information -----------------------------------------------------
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 27b3add

Please sign in to comment.