-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
135 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
<center> | ||
<a href="https://github.com/riga/order"> | ||
<img src="https://raw.githubusercontent.com/riga/order/master/logo240.png" /> | ||
</a> | ||
</center> | ||
|
||
|
||
<!-- marker-after-logo --> | ||
|
||
|
||
[![Documentation status](https://readthedocs.org/projects/python-order/badge/?version=latest)](http://python-order.readthedocs.io/en/latest) | ||
[![Lint and test](https://github.com/riga/order/actions/workflows/lint_and_test.yml/badge.svg)](https://github.com/riga/order/actions/workflows/lint_and_test.yml) | ||
[![Code coverge](https://codecov.io/gh/riga/order/branch/master/graph/badge.svg?token=SNFRGYOITJ)](https://codecov.io/gh/riga/order) | ||
[![Package version](https://img.shields.io/pypi/v/order.svg?style=flat)](https://pypi.python.org/pypi/order) | ||
[![License](https://img.shields.io/github/license/riga/order.svg)](https://github.com/riga/order/blob/master/LICENSE) | ||
[![PyPI downloads](https://img.shields.io/pypi/dm/order.svg)](https://pypi.python.org/pypi/order) | ||
[![Open in colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/riga/order/blob/master/examples/intro.ipynb) | ||
[![Open in binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/riga/order/master?filepath=examples%2Fintro.ipynb) | ||
|
||
If you're designing a high-energy physics analysis (e.g. with data recorded by an [LHC](https://home.cern/topics/large-hadron-collider) experiment at [CERN](http://home.cern), manual bookkeeping of external data can get complicated quite fast. | ||
*order* provides a pythonic class collection that helps you structuring | ||
|
||
- analyses, | ||
- MC campaigns, | ||
- datasets, | ||
- physics process and cross sections, | ||
- channels, | ||
- categories, | ||
- variables, and | ||
- systematic shifts. | ||
|
||
|
||
<!-- marker-after-header --> | ||
|
||
|
||
## Getting started | ||
|
||
See the [intro.ipynb](https://github.com/riga/order/blob/master/examples/intro.ipynb) notebook for an introduction to the most important classes and an example setup of a small analysis. | ||
You can also run the notebook interactively on colab or binder: | ||
|
||
[![Open in colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/riga/order/blob/master/examples/intro.ipynb) | ||
[![Open in binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/riga/order/master?filepath=examples%2Fintro.ipynb) | ||
|
||
You can find the full [API documentation on readthedocs](http://python-order.readthedocs.io). | ||
|
||
|
||
<!-- marker-after-getting-started --> | ||
|
||
|
||
## Projects using order | ||
|
||
- [uhh-cms/cmsdb](https://github.com/uhh-cms/cmsdb) | ||
- tba | ||
|
||
|
||
## Installation and dependencies | ||
|
||
Install *order* via [pip](https://pypi.python.org/pypi/order): | ||
|
||
```shell | ||
pip install order | ||
``` | ||
|
||
The only dependencies are [scinum](https://pypi.python.org/pypi/scinum) and [six](https://pypi.python.org/pypi/six) (Python 2 support that will be dropped soon), which are installed with the above command. | ||
|
||
|
||
## Contributing and testing | ||
|
||
If you like to contribute, feel free to open a pull request 🎉. | ||
Just make sure to add new test cases and run them via: | ||
|
||
```shell | ||
python -m unittest tests | ||
``` | ||
|
||
In general, tests should be run for Python 2.7, 3.6 - 3.11. | ||
To run tests in a docker container, do | ||
|
||
```shell | ||
# run the tests | ||
./tests/docker.sh python:3.9 | ||
|
||
# or interactively by adding a flag "1" to the command | ||
./tests/docker.sh python:3.9 1 | ||
> pip install -r requirements.txt | ||
> python -m unittest tests | ||
``` | ||
|
||
In addition, [PEP 8](https://www.python.org/dev/peps/pep-0008) compatibility should be checked with [flake8](https://pypi.org/project/flake8): | ||
|
||
```shell | ||
flake8 order tests setup.py | ||
``` | ||
|
||
|
||
## Development | ||
|
||
- Source hosted at [GitHub](https://github.com/riga/order) | ||
- Report issues, questions, feature requests on [GitHub Issues](https://github.com/riga/order/issues) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* sphinx_rtd_theme styles */ | ||
|
||
div#site-navigation img.logo { | ||
width: 240px !important; | ||
height: 85px !important; | ||
max-height: none !important; | ||
} | ||
|
||
div#site-navigation div.navbar_extra_footer { | ||
display: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,17 @@ | ||
**order** | ||
========= | ||
|
||
.. toctree:: | ||
:hidden: | ||
|
||
self | ||
|
||
.. include:: ../README.rst | ||
:start-after: marker-after-logo | ||
:end-before: marker-after-header | ||
|
||
|
||
Getting started | ||
--------------- | ||
.. include:: ../README.md | ||
:parser: myst_parser.sphinx_ | ||
:start-after: <!-- marker-after-logo --> | ||
:end-before: <!-- marker-after-header --> | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
quickstart | ||
api/index | ||
|
||
See the `intro.ipynb <https://github.com/riga/order/blob/master/examples/intro.ipynb>`__ notebook for an introduction to the most important classes and an example setup of a small analysis. | ||
You can also run the notebook interactively on colab or binder: | ||
|
||
|colab| |binder| | ||
|
||
|
||
.. include:: ../README.rst | ||
:start-after: marker-after-getting-started | ||
.. include:: ../README.md | ||
:parser: myst_parser.sphinx_ | ||
:start-after: <!-- marker-after-getting-started --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,6 @@ six | |
|
||
sphinx>=5.0,<6 | ||
sphinx_rtd_theme | ||
sphinx_book_theme | ||
autodocsumm==0.2.* | ||
myst-parser~=0.18 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters