================================================
primpy: calculations for the primordial Universe
================================================
:primpy: calculations for the primordial Universe
:Author: Lukas Hergt
:Version: 2.9.0
:Homepage: https://github.com/lukashergt/primpy
:Documentation: https://primpy.readthedocs.io
.. image:: https://github.com/lukashergt/primpy/actions/workflows/pythonpackage.yml/badge.svg?branch=master
:target: https://github.com/lukashergt/primpy/actions/workflows/pythonpackage.yml
:alt: Build Status
.. image:: https://codecov.io/gh/lukashergt/primpy/branch/master/graph/badge.svg?token=USS4K53PY0
:target: https://codecov.io/gh/lukashergt/primpy
:alt: Test Coverage
.. image:: https://readthedocs.org/projects/primpy/badge/?version=latest
:target: https://primpy.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
.. image:: https://badge.fury.io/py/primpy.svg
:target: https://badge.fury.io/py/primpy
:alt: PyPi version
Installation
------------
``primpy`` can be installed via pip
.. code:: bash
pip install primpy
or via the setup.py
.. code:: bash
git clone https://github.com/lukashergt/primpy
cd primpy
python setup.py install --user
You can check that things are working by running the test suite:
.. code:: bash
python -m pytest
flake8 --max-line-length=99 primpy tests
pydocstyle --convention=numpy primpy
Dependencies
~~~~~~~~~~~~
Basic requirements:
- Python 3.7+
- `numpy <https://pypi.org/project/numpy/>`__
- `scipy <https://pypi.org/project/scipy/>`__
- `pyoscode <https://pypi.org/project/pyoscode/>`__
Documentation:
- `sphinx <https://pypi.org/project/Sphinx/>`__
- `sphinx_rtd_theme <https://pypi.org/project/sphinx-rtd-theme/>`__
- `numpydoc <https://pypi.org/project/numpydoc/>`__
- `matplotlib <https://pypi.org/project/matplotlib/>`__
Tests:
- `pytest <https://pypi.org/project/pytest/>`__
- `flake8 <https://pypi.org/project/flake8/>`__
- `pydocstyle <https://pypi.org/project/pydocstyle/>`__
Citation
--------
If you use ``primpy`` during your research for a publication, please cite the
following paper:
.. code:: text
L. T. Hergt, F. J. Agocs, W. J. Handley, M. P. Hobson, and A. N. Lasenby,
"Finite inflation in curved space", Phys. Rev. D 106, 063529 (2022),
https://doi.org/10.1103/PhysRevD.106.063529
or using the BibTeX:
.. code:: bibtex
@article{Hergt2022,
archivePrefix = {arXiv},
arxivId = {2205.07374},
author = {Hergt, L. T. and Agocs, F. J. and Handley, W. J. and Hobson, M. P. and Lasenby, A. N.},
doi = {10.1103/PhysRevD.106.063529},
eprint = {2205.07374},
issn = {2470-0010},
journal = {Physical Review D},
month = {sep},
number = {6},
pages = {063529},
publisher = {American Physical Society (APS)},
title = {{Finite inflation in curved space}},
url = {https://journals.aps.org/prd/abstract/10.1103/PhysRevD.106.063529},
volume = {106},
year = {2022}
}
Contributing
------------
There are many ways you can contribute via the `GitHub repository
<https://github.com/lukashergt/primpy>`__.
- You can `open an issue <https://github.com/lukashergt/primpy/issues>`__ to
report bugs or to propose new features.
- Pull requests are very welcome. Note that if you are going to propose major
changes, be sure to open an issue for discussion first, to make sure that
your PR will be accepted before you spend effort coding it.
Raw data
{
"_id": null,
"home_page": null,
"name": "primpy",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "PPS, cosmic inflation, initial conditions for inflation, kinetic dominance",
"author": "Lukas Hergt",
"author_email": "lh561@mrao.cam.ac.uk",
"download_url": "https://files.pythonhosted.org/packages/cc/14/60ca8a36b2679d46b3eaf5c5a2c07827046c3207de89a7d0a9ec00c71d8b/primpy-2.9.0.tar.gz",
"platform": null,
"description": "================================================\nprimpy: calculations for the primordial Universe\n================================================\n:primpy: calculations for the primordial Universe\n:Author: Lukas Hergt\n:Version: 2.9.0\n:Homepage: https://github.com/lukashergt/primpy\n:Documentation: https://primpy.readthedocs.io\n\n.. image:: https://github.com/lukashergt/primpy/actions/workflows/pythonpackage.yml/badge.svg?branch=master\n :target: https://github.com/lukashergt/primpy/actions/workflows/pythonpackage.yml\n :alt: Build Status\n.. image:: https://codecov.io/gh/lukashergt/primpy/branch/master/graph/badge.svg?token=USS4K53PY0\n :target: https://codecov.io/gh/lukashergt/primpy\n :alt: Test Coverage\n.. image:: https://readthedocs.org/projects/primpy/badge/?version=latest\n :target: https://primpy.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n.. image:: https://badge.fury.io/py/primpy.svg\n :target: https://badge.fury.io/py/primpy\n :alt: PyPi version\n\n\nInstallation\n------------\n\n``primpy`` can be installed via pip\n\n.. code:: bash\n\n pip install primpy\n\nor via the setup.py\n\n.. code:: bash\n\n git clone https://github.com/lukashergt/primpy\n cd primpy\n python setup.py install --user\n\nYou can check that things are working by running the test suite:\n\n.. code:: bash\n\n python -m pytest\n flake8 --max-line-length=99 primpy tests\n pydocstyle --convention=numpy primpy\n\n\nDependencies\n~~~~~~~~~~~~\n\nBasic requirements:\n\n- Python 3.7+\n- `numpy <https://pypi.org/project/numpy/>`__\n- `scipy <https://pypi.org/project/scipy/>`__\n- `pyoscode <https://pypi.org/project/pyoscode/>`__\n\nDocumentation:\n\n- `sphinx <https://pypi.org/project/Sphinx/>`__\n- `sphinx_rtd_theme <https://pypi.org/project/sphinx-rtd-theme/>`__\n- `numpydoc <https://pypi.org/project/numpydoc/>`__\n- `matplotlib <https://pypi.org/project/matplotlib/>`__\n\nTests:\n\n- `pytest <https://pypi.org/project/pytest/>`__\n- `flake8 <https://pypi.org/project/flake8/>`__\n- `pydocstyle <https://pypi.org/project/pydocstyle/>`__\n\n\nCitation\n--------\n\nIf you use ``primpy`` during your research for a publication, please cite the\nfollowing paper:\n\n.. code:: text\n\n L.\u2009T. Hergt, F.\u2009J. Agocs, W.\u2009J. Handley, M.\u2009P. Hobson, and A.\u2009N. Lasenby,\n \"Finite inflation in curved space\", Phys. Rev. D 106, 063529 (2022),\n https://doi.org/10.1103/PhysRevD.106.063529\n\nor using the BibTeX:\n\n.. code:: bibtex\n\n @article{Hergt2022,\n archivePrefix = {arXiv},\n arxivId = {2205.07374},\n author = {Hergt, L. T. and Agocs, F. J. and Handley, W. J. and Hobson, M. P. and Lasenby, A. N.},\n doi = {10.1103/PhysRevD.106.063529},\n eprint = {2205.07374},\n issn = {2470-0010},\n journal = {Physical Review D},\n month = {sep},\n number = {6},\n pages = {063529},\n publisher = {American Physical Society (APS)},\n title = {{Finite inflation in curved space}},\n url = {https://journals.aps.org/prd/abstract/10.1103/PhysRevD.106.063529},\n volume = {106},\n year = {2022}\n }\n\n\nContributing\n------------\nThere are many ways you can contribute via the `GitHub repository\n<https://github.com/lukashergt/primpy>`__.\n\n- You can `open an issue <https://github.com/lukashergt/primpy/issues>`__ to\n report bugs or to propose new features.\n- Pull requests are very welcome. Note that if you are going to propose major\n changes, be sure to open an issue for discussion first, to make sure that\n your PR will be accepted before you spend effort coding it.\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "primpy: Calculations for the primordial Universe.",
"version": "2.9.0",
"project_urls": null,
"split_keywords": [
"pps",
" cosmic inflation",
" initial conditions for inflation",
" kinetic dominance"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "cbaf709b9ebff836e6f8c144dac6410d78e414e8ff0cef9b4f6c7cdd045b7d62",
"md5": "b47688e7d831a95e79d482379cf3ed3f",
"sha256": "0c59f07748936035b2c8f132b8fad934f7ae764c34d3bdb64c159a439a968e01"
},
"downloads": -1,
"filename": "primpy-2.9.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b47688e7d831a95e79d482379cf3ed3f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 52179,
"upload_time": "2024-06-19T18:23:02",
"upload_time_iso_8601": "2024-06-19T18:23:02.464558Z",
"url": "https://files.pythonhosted.org/packages/cb/af/709b9ebff836e6f8c144dac6410d78e414e8ff0cef9b4f6c7cdd045b7d62/primpy-2.9.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cc1460ca8a36b2679d46b3eaf5c5a2c07827046c3207de89a7d0a9ec00c71d8b",
"md5": "aa1b16648fdfab4d6ab6467e98b0ec35",
"sha256": "803c3beb7dbc8a2b4ca2fb818dd3e9a2b2bafd2a2177ae621b70e3d48edcc111"
},
"downloads": -1,
"filename": "primpy-2.9.0.tar.gz",
"has_sig": false,
"md5_digest": "aa1b16648fdfab4d6ab6467e98b0ec35",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41965,
"upload_time": "2024-06-19T18:23:04",
"upload_time_iso_8601": "2024-06-19T18:23:04.433095Z",
"url": "https://files.pythonhosted.org/packages/cc/14/60ca8a36b2679d46b3eaf5c5a2c07827046c3207de89a7d0a9ec00c71d8b/primpy-2.9.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-06-19 18:23:04",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "primpy"
}