Skip to content

Commit

Permalink
Merge branch 'main' into automate-issue
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrofelder authored Oct 5, 2023
2 parents 6ba44f7 + 64c8c46 commit 69bbf0a
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 7 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ include LICENSE
include README.md

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

exclude .pre-commit-config.yaml

recursive-exclude * __pycache__
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Collaborative coding and software development good practices course

Use the instructions on the issues to complete the exercises.

## Credits
The exercised present in this repository are based on the ARC RSE course with Python, available at [UCL-COMP0233-22-23/RSE-Classwork](https://github.com/UCL-COMP0233-22-23/RSE-Classwork) made by [David Perez-Suarez](https://github.com/dpshelio).
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 69bbf0a

Please sign in to comment.