Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MANIFEST.in
exclude .gitignore
include README.rst
include README.md
include setup.cfg
include CITATIONS.rst
include LICENSE
Expand Down
5 changes: 3 additions & 2 deletions README.rst → README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# PyAutoArray
A library for manipulating arrays within the PyAuto software framework
# PyAutoArray

A library for manipulating arrays within the PyAuto software framework
13 changes: 13 additions & 0 deletions autoarray/config/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
The `config` folder contains configuration files which customize default **PyAutoLens**.

# Folders

- `priors`: Configs defining default priors assumed on every model component and set of parameters.
- `visualize`: Configs defining what images are output by a lens model fit.

# Files

- `general.yaml`: Customizes general **PyAutoLens** settings.
- `grids.yaml`: Customize default behaviour of grids when used for calculations.
- `logging.yaml`: Customizes the logging behaviour.
- `notation.yaml`: Configs defining labels and formatting of model parameters when used for visualization.
16 changes: 0 additions & 16 deletions autoarray/config/README.rst

This file was deleted.

10 changes: 10 additions & 0 deletions autoarray/config/visualize/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
The `config` folder contains configuration files which customize default **PyAutoLens**.

# Files

- `general.yaml`: Customizes general visualization settings (e.g. the matplotlib backend).
- `include.yaml`: Customize features that appears on plotted images by default (e.g. a mask, a grid).
- `plots.yaml`: Customize which figures are output during a model-fit.
- `mat_wrap.yaml`: Specify the default matplotlib settings when figures and subplots are plotted.
- `mat_wrap_1d.yaml`: Specify the default matplotlib settings when 1D figures and subplots are plotted.
- `mat_wrap_2d.yaml`: Specify the default matplotlib settings when 2D figures and subplots are plotted.
11 changes: 0 additions & 11 deletions autoarray/config/visualize/README.rst

This file was deleted.

3 changes: 1 addition & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
```{eval-rst}
.. include:: ../README.rst
```{include} ../README.md
```
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
name = "autoarray"
dynamic = ["version"]
description="PyAuto Data Structures"
readme = { file = "README.rst", content-type = "text/x-rst" }
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "MIT" }
requires-python = ">=3.9"
authors = [
Expand Down
Loading