Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC: Centralize documentation.md #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ script:
- coverage report -m # Generate test coverage report.
- codecov # Upload the report to codecov.
- flake8 --max-line-length=115 # Enforce code style (but relax line length limit a bit).
- make -C docs html # Build the documentation.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# suitcase-mongo changes

## v0.2.0 (2020-03-13)

## v0.1.2 (2020-03-11)

## v0.1.1 (2019-10-18)

## v0.1.0 (2019-05-03)
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,32 @@ contains two packages:
```
pip install suitcase-mongo
```

## Quick Start

`suitcase-mongo` supports `mongo_normalized` and `mongo_embedded`.

Using `mongo_normalized`:

```
from suitcase.mongo_normalized import Serializer
docs = db[-1].documents(fill=True)
serializer = Serializer(METADATASTORE_DB, ASSET_REGISTRY_DB)
for item in documents:
serializer(*item)
```

Using `mongo_embedded`:

```
from suitcase.mongo_embedded import Serializer

docs = db[-1].documents(fill=True)
serializer = Serializer(PERMANENT_DB)
for item in docs:
serializer(*item)
```

## Documentation

See the [suitcase documentation](https://nsls-ii.github.io/suitcase).
20 changes: 0 additions & 20 deletions docs/Makefile

This file was deleted.

36 changes: 0 additions & 36 deletions docs/make.bat

This file was deleted.

Empty file removed docs/source/_static/.placeholder
Empty file.
202 changes: 0 additions & 202 deletions docs/source/conf.py

This file was deleted.

14 changes: 0 additions & 14 deletions docs/source/index.rst

This file was deleted.

7 changes: 0 additions & 7 deletions docs/source/installation.rst

This file was deleted.

6 changes: 0 additions & 6 deletions docs/source/release-history.rst

This file was deleted.

9 changes: 0 additions & 9 deletions docs/source/usage.rst

This file was deleted.

7 changes: 0 additions & 7 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,6 @@ codecov
coverage
flake8
pytest >=3.9
sphinx
suitcase-utils[test_fixtures] >=0.1.0rc2
# These are dependencies of various sphinx extensions for documentation.
ipython
matplotlib
numpydoc
sphinx-copybutton
sphinx_rtd_theme
# TEMPORARY UNTIL https://github.com/NSLS-II/ophyd/pull/682 IS RELEASED
git+git://github.com/NSLS-II/ophyd@ophyd-for-suitcase-utils