Skip to content

Commit

Permalink
Merge pull request #10 from neuroinformatics-unit/rename-folder
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrofelder authored Sep 28, 2023
2 parents 5f89371 + a9ff2cc commit 64c8c46
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
include LICENSE
include README.md

recursive-include rse_best_practices_playground *.py
recursive-include tests *.py

exclude .pre-commit-config.yaml

recursive-exclude * __pycache__
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
software\_practice\_template.times.time\_range
rse\_best\_practices\_playground.times.time\_range
==============================================

.. currentmodule:: software_practice_template.times
.. currentmodule:: rse_best_practices_playground.times

.. autofunction:: time_range
2 changes: 1 addition & 1 deletion docs/source/api_index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ API Reference

Times
------------
.. currentmodule:: software_practice_template.times
.. currentmodule:: rse_best_practices_playground.times
.. autosummary::
:toctree: api_generated
:template: function.rst
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "rse-best-practices-playground"
authors = [{name = "lauraporta", email= "[email protected]"}]
description = "A template to generate repositories used in teaching software skills"
description = "Improve your software development skills with this repo!"
readme = "README.md"
requires-python = ">=3.8.0"
dynamic = ["version"]
Expand Down Expand Up @@ -58,12 +58,12 @@ build-backend = "setuptools.build_meta"
include-package-data = true

[tool.setuptools.packages.find]
include = ["software_practice_template*"]
include = ["rse_best_practices_playground*"]
exclude = ["tests", "docs*"]


[tool.pytest.ini_options]
addopts = "--cov=software_practice_template"
addopts = "--cov=rse_best_practices_playground"

[tool.black]
target-version = ['py38', 'py39', 'py310']
Expand Down Expand Up @@ -112,5 +112,5 @@ python =
extras =
dev
commands =
pytest -v --color=yes --cov=software_practice_template --cov-report=xml
pytest -v --color=yes --cov=rse_best_practices_playground --cov-report=xml
"""
File renamed without changes.
File renamed without changes.

0 comments on commit 64c8c46

Please sign in to comment.