Skip to content

Commit

Permalink
Merge pull request #131 from mrakitin/doc-convert-readme-to-md
Browse files Browse the repository at this point in the history
DOC: convert `README.rst` to `README.md`
  • Loading branch information
thomaswmorris authored Jul 25, 2023
2 parents 3b22a2f + 2c60d4e commit ee02395
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 151 deletions.
13 changes: 0 additions & 13 deletions AUTHORS.rst

This file was deleted.

103 changes: 0 additions & 103 deletions CONTRIBUTING.rst

This file was deleted.

4 changes: 1 addition & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
include AUTHORS.rst
include CONTRIBUTING.rst
include LICENSE
include README.rst
include README.md
include requirements.txt

recursive-exclude * __pycache__
Expand Down
43 changes: 43 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Sirepo-Bluesky

[![Zenodo](https://zenodo.org/badge/243052461.svg)](https://zenodo.org/badge/latestdoi/243052461)
[![Test](https://github.com/NSLS-II/sirepo-bluesky/actions/workflows/testing.yml/badge.svg)](https://github.com/NSLS-II/sirepo-bluesky/actions/workflows/testing.yml)
[![PyPI](https://img.shields.io/pypi/v/sirepo-bluesky.svg?logo=pypi&logoColor=white&label=PyPI)](https://pypi.python.org/pypi/sirepo-bluesky)
[![Conda](https://img.shields.io/conda/vn/conda-forge/sirepo-bluesky.svg?logo=conda-forge&logoColor=white)](https://anaconda.org/conda-forge/sirepo-bluesky)

This is a Sirepo-Bluesky interface library that allows using the [Bluesky data
acquisition framework](https://blueskyproject.io) to run [Sirepo](https://github.com/radiasoft/sirepo) simulations (SRW, Shadow3, etc.)

* Free software: BSD-3-Clause license


## Documentation

Please check our documentation at https://nsls-ii.github.io/sirepo-bluesky for
installation instructions and examples using SRW, Shadow3, and MAD-X apps of
Sirepo.


## Citation

> M. Rakitin, A. Giles, K. Swartz, J. Lynch, P. Moeller, R. Nagler, D.B. Allan, T.A. Caswell, L. Wiegart, O. Chubar, and Y. Du _"Introduction of the Sirepo-Bluesky interface and its application to the optimization problems"_, Proc. SPIE 11493, Advances in Computational Methods for X-Ray Optics V, 1149311 (21 August 2020); https://doi.org/10.1117/12.2569000
BibTeX:
```
@InProceedings{2020.08-01:Rakitin,
author = {Rakitin, Maksim S. and Giles, Abigail and Swartz, Kaleb and Lynch, Joshua and Moeller, Paul and Nagler, Robert and Allan, Daniel B. and Caswell, Thomas A. and Wiegart, Lutz and Chubar, Oleg and Du, Yonghua},
booktitle = {Advances in Computational Methods for X-Ray Optics V},
title = {{Introduction of the Sirepo-Bluesky interface and its application to the optimization problems}},
year = {2020},
editor = {Oleg Chubar and Kawal Sawhney},
month = aug,
organization = {International Society for Optics and Photonics},
pages = {209--226},
publisher = {SPIE},
volume = {11493},
doi = {10.1117/12.2569000},
file = {:papers/2020.08-01_Rakitin.pdf:PDF},
keywords = {Sirepo, SRW, Bluesky, Databroker, Ophyd, optimization, simulations},
url = {https://doi.org/10.1117/12.2569000},
}
```
31 changes: 0 additions & 31 deletions README.rst

This file was deleted.

3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

here = path.abspath(path.dirname(__file__))

with open(path.join(here, "README.rst"), encoding="utf-8") as readme_file:
with open(path.join(here, "README.md"), encoding="utf-8") as readme_file:
readme = readme_file.read()

with open(path.join(here, "requirements.txt")) as requirements_file:
Expand All @@ -41,6 +41,7 @@
cmdclass=versioneer.get_cmdclass(),
description="Sirepo-Bluesky interface",
long_description=readme,
long_description_content_type="text/markdown",
author="Brookhaven National Laboratory",
author_email="[email protected]",
url="https://github.com/NSLS-II/sirepo-bluesky",
Expand Down

0 comments on commit ee02395

Please sign in to comment.