ridepy


Nameridepy JSON
Version 2.6.2.post2 PyPI version JSON
download
home_pageNone
SummarySimulates a dispatching algorithm serving exogenous transportation requests with a fleet of vehicles. Does not simulate the universe, unlike MATSim. Batteries are included.
upload_time2024-04-18 12:35:07
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords simulation ridepooling mobility transport physics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            |Code style: black| |Tests| |Docs| |wheel| |sdist|

RidePy
======

RidePy is a scientific Python library for simulating modern on-demand transit systems such as ridepooling.

In short: RidePy simulates a dispatching algorithm serving exogenous transportation requests with a fleet of vehicles. Does not simulate the universe, unlike MATSim. Batteries are included.

Head over to `ridepy.org <ridepy doc_>`__ to get started.

Quickstart
----------

For detailed instructions, see the `installation guide <https://ridepy.org/setup.html>`__ in the documentation.

If you're in a hurry, here's the gist:

- RidePy currently works best with Python 3.9
- If you are on platform other than x86-64 Linux, i.e., one that we don't offer wheels for, you will need to first set up a C++ build environment and the `Boost C++ libraries <https://www.boost.org/>`__. On Debian-like systems, this is easily accomplished with

.. code-block:: bash

   sudo apt-get install build-essential libboost-all-dev

- Install RidePy with

.. code-block:: bash

   pip install ridepy

Contributing
------------

We are always happy for contributions from the community. If you run into a problem, please `report an issue <https://ridepy.org/issues.html>`__ or `ask for help <https://ridepy.org/support.html>`__.

If you are interested in contributing to our codebase, please read our `contributing guide <https://ridepy.org/contributing.html>`__.

Here is a short overview of the most important points:

Resources
~~~~~~~~~

- Documentation: `ridepy.org <ridepy doc_>`__
- Source code: `GitHub <https://github.com/PhysicsOfMobility/ridepy>`__
- Issue tracker: `GitHub <https://github.com/PhysicsOfMobility/ridepy/issues>`__

Code style
~~~~~~~~~~

- Python: `black <https://github.com/psf/black>`__
- C++: `LLVM <https://llvm.org/docs/CodingStandards.html>`__

Development
~~~~~~~~~~~

- Version control: `Git <https://git-scm.com/>`__
- Testing: `pytest <https://docs.pytest.org/en/stable/>`__
- Continuous integration: `GitHub Actions <https://github.com/PhysicsOfMobility/ridepy/actions>`__
- Versioning: `Semantic Versioning <https://semver.org/>`__

.. http://mozillascience.github.io/working-open-workshop/contributing/

..
    ---------
    Badges
    ---------

.. |Code style: black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
   :target: https://github.com/psf/black

.. |Docs| image:: https://github.com/PhysicsOfMobility/ridepy/actions/workflows/build-doc.yml/badge.svg
   :target: https://github.com/PhysicsOfMobility/ridepy/actions/workflows/build-doc.yml

.. |Tests| image:: https://github.com/PhysicsOfMobility/ridepy/actions/workflows/python-testing.yml/badge.svg
   :target: https://github.com/PhysicsOfMobility/ridepy/actions/workflows/python-testing.yml

.. |wheel| image:: https://github.com/PhysicsOfMobility/ridepy/actions/workflows/build-wheel.yml/badge.svg
   :target: https://github.com/PhysicsOfMobility/ridepy/actions/workflows/build-wheel.yml

.. |sdist| image:: https://github.com/PhysicsOfMobility/ridepy/actions/workflows/build-sdist.yml/badge.svg
   :target: https://github.com/PhysicsOfMobility/ridepy/actions/workflows/build-sdist.yml

.. _ridepy doc: https://ridepy.org

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "ridepy",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "simulation, ridepooling, mobility, transport, physics",
    "author": null,
    "author_email": "Felix Jung <felix.jung@tu-dresden.de>, Debsankha Manik <dmanik@debsankha.net>",
    "download_url": "https://files.pythonhosted.org/packages/8b/29/004e33924410cdc17a8d2e21a6c86d87906ab5633a75a35c32be19bac376/ridepy-2.6.2.post2.tar.gz",
    "platform": null,
    "description": "|Code style: black| |Tests| |Docs| |wheel| |sdist|\n\nRidePy\n======\n\nRidePy is a scientific Python library for simulating modern on-demand transit systems such as ridepooling.\n\nIn short: RidePy simulates a dispatching algorithm serving exogenous transportation requests with a fleet of vehicles. Does not simulate the universe, unlike MATSim. Batteries are included.\n\nHead over to `ridepy.org <ridepy doc_>`__ to get started.\n\nQuickstart\n----------\n\nFor detailed instructions, see the `installation guide <https://ridepy.org/setup.html>`__ in the documentation.\n\nIf you're in a hurry, here's the gist:\n\n- RidePy currently works best with Python 3.9\n- If you are on platform other than x86-64 Linux, i.e., one that we don't offer wheels for, you will need to first set up a C++ build environment and the `Boost C++ libraries <https://www.boost.org/>`__. On Debian-like systems, this is easily accomplished with\n\n.. code-block:: bash\n\n   sudo apt-get install build-essential libboost-all-dev\n\n- Install RidePy with\n\n.. code-block:: bash\n\n   pip install ridepy\n\nContributing\n------------\n\nWe are always happy for contributions from the community. If you run into a problem, please `report an issue <https://ridepy.org/issues.html>`__ or `ask for help <https://ridepy.org/support.html>`__.\n\nIf you are interested in contributing to our codebase, please read our `contributing guide <https://ridepy.org/contributing.html>`__.\n\nHere is a short overview of the most important points:\n\nResources\n~~~~~~~~~\n\n- Documentation: `ridepy.org <ridepy doc_>`__\n- Source code: `GitHub <https://github.com/PhysicsOfMobility/ridepy>`__\n- Issue tracker: `GitHub <https://github.com/PhysicsOfMobility/ridepy/issues>`__\n\nCode style\n~~~~~~~~~~\n\n- Python: `black <https://github.com/psf/black>`__\n- C++: `LLVM <https://llvm.org/docs/CodingStandards.html>`__\n\nDevelopment\n~~~~~~~~~~~\n\n- Version control: `Git <https://git-scm.com/>`__\n- Testing: `pytest <https://docs.pytest.org/en/stable/>`__\n- Continuous integration: `GitHub Actions <https://github.com/PhysicsOfMobility/ridepy/actions>`__\n- Versioning: `Semantic Versioning <https://semver.org/>`__\n\n.. http://mozillascience.github.io/working-open-workshop/contributing/\n\n..\n    ---------\n    Badges\n    ---------\n\n.. |Code style: black| image:: https://img.shields.io/badge/code%20style-black-000000.svg\n   :target: https://github.com/psf/black\n\n.. |Docs| image:: https://github.com/PhysicsOfMobility/ridepy/actions/workflows/build-doc.yml/badge.svg\n   :target: https://github.com/PhysicsOfMobility/ridepy/actions/workflows/build-doc.yml\n\n.. |Tests| image:: https://github.com/PhysicsOfMobility/ridepy/actions/workflows/python-testing.yml/badge.svg\n   :target: https://github.com/PhysicsOfMobility/ridepy/actions/workflows/python-testing.yml\n\n.. |wheel| image:: https://github.com/PhysicsOfMobility/ridepy/actions/workflows/build-wheel.yml/badge.svg\n   :target: https://github.com/PhysicsOfMobility/ridepy/actions/workflows/build-wheel.yml\n\n.. |sdist| image:: https://github.com/PhysicsOfMobility/ridepy/actions/workflows/build-sdist.yml/badge.svg\n   :target: https://github.com/PhysicsOfMobility/ridepy/actions/workflows/build-sdist.yml\n\n.. _ridepy doc: https://ridepy.org\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Simulates a dispatching algorithm serving exogenous transportation requests with a fleet of vehicles. Does not simulate the universe, unlike MATSim. Batteries are included.",
    "version": "2.6.2.post2",
    "project_urls": {
        "Documentation": "https://ridepy.org/",
        "Homepage": "https://ridepy.org/",
        "Repository": "https://github.com/PhysicsOfMobility/ridepy/"
    },
    "split_keywords": [
        "simulation",
        " ridepooling",
        " mobility",
        " transport",
        " physics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7b16a9b580a6c22d6d4b681022b7915f9d560c37ac194ccd8f8ef696474958d",
                "md5": "18b2363add45534cf71799b13c57bf41",
                "sha256": "4cac714eb7ebed2b0b505b61fecfc05e4a35cf2728813d5ead5cd544a8cd50af"
            },
            "downloads": -1,
            "filename": "ridepy-2.6.2.post2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "18b2363add45534cf71799b13c57bf41",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3549470,
            "upload_time": "2024-04-18T12:35:02",
            "upload_time_iso_8601": "2024-04-18T12:35:02.617054Z",
            "url": "https://files.pythonhosted.org/packages/d7/b1/6a9b580a6c22d6d4b681022b7915f9d560c37ac194ccd8f8ef696474958d/ridepy-2.6.2.post2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b29004e33924410cdc17a8d2e21a6c86d87906ab5633a75a35c32be19bac376",
                "md5": "880763ea5e8dc10d3d066914c322c2df",
                "sha256": "868c04a1202e2288912500d7d11b7db7f6898ad338c9b0a4a0c75156a02bbaa9"
            },
            "downloads": -1,
            "filename": "ridepy-2.6.2.post2.tar.gz",
            "has_sig": false,
            "md5_digest": "880763ea5e8dc10d3d066914c322c2df",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 107971,
            "upload_time": "2024-04-18T12:35:07",
            "upload_time_iso_8601": "2024-04-18T12:35:07.143282Z",
            "url": "https://files.pythonhosted.org/packages/8b/29/004e33924410cdc17a8d2e21a6c86d87906ab5633a75a35c32be19bac376/ridepy-2.6.2.post2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-18 12:35:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "PhysicsOfMobility",
    "github_project": "ridepy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "ridepy"
}
        
Elapsed time: 0.24476s