passagemath-benzene


Namepassagemath-benzene JSON
Version 10.6.36 PyPI version JSON
download
home_pageNone
Summarypassagemath: Generate fusene and benzenoid graphs with benzene
upload_time2025-11-16 00:38:24
maintainerMatthias Köppe, passagemath contributors
docs_urlNone
authorNone
requires_python<3.15,>=3.10
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ===============================================================================
passagemath: Generate fusene and benzenoid graphs with benzene
===============================================================================

`passagemath <https://github.com/passagemath/passagemath>`__ is open
source mathematical software in Python, released under the GNU General
Public Licence GPLv2+.

It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
developed 2005-2025 under the motto “Creating a Viable Open Source
Alternative to Magma, Maple, Mathematica, and MATLAB”.

The passagemath fork uses the motto "Creating a Free Passage Between the
Scientific Python Ecosystem and Mathematical Software Communities."
It was created in October 2024 with the following goals:

-  providing modularized installation with pip,
-  establishing first-class membership in the scientific Python
   ecosystem,
-  giving `clear attribution of upstream
   projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
-  providing independently usable Python interfaces to upstream
   libraries,
-  offering `platform portability and integration testing
   services <https://github.com/passagemath/passagemath/issues/704>`__
   to upstream projects,
-  inviting collaborations with upstream projects,
-  `building a professional, respectful, inclusive
   community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
-  `empowering Sage users to participate in the scientific Python ecosystem
   <https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
-  developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
   serverless deployment with Javascript,
-  developing a native Windows port.

`Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
available online.

passagemath attempts to support and provides binary wheels suitable for
all major Linux distributions and recent versions of macOS.

Binary wheels for native Windows (x86_64) are are available for a subset of
the passagemath distributions. Use of the full functionality of passagemath
on Windows currently requires the use of Windows Subsystem for Linux (WSL)
or virtualization.

The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.


About this pip-installable distribution package
-----------------------------------------------

This pip-installable distribution ``passagemath-benzene`` provides an interface
to benzene, a program for the efficient generation of all nonisomorphic
fusenes and benzenoids with a given number of faces.


What is included
----------------

* Binary wheels on PyPI contain prebuilt copies of the benzene executable.


Examples
--------

Using the benzene program on the command line::

    $ pipx run --pip-args="--prefer-binary" --spec "passagemath-benzene[test]" sage -sh -c benzene

Finding the installation location of the benzene program::

    $ pipx run --pip-args="--prefer-binary" --spec "passagemath-benzene[test]" ipython

    In [1]: from sage.features.graph_generators import Benzene

    In [2]: Benzene().absolute_filename()
    Out[2]: '.../bin/benzene'

Using the Python interface::

    $ pipx run --pip-args="--prefer-binary" --spec "passagemath-benzene[test]" ipython

    In [1]: from sage.all__sagemath_benzene import *

    In [2]: len(list(graphs.fusenes(9, benzenoids=True)))
    Out[2]: 6505

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "passagemath-benzene",
    "maintainer": "Matthias K\u00f6ppe, passagemath contributors",
    "docs_url": null,
    "requires_python": "<3.15,>=3.10",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "The Sage Developers <sage-support@googlegroups.com>",
    "download_url": null,
    "platform": null,
    "description": "===============================================================================\npassagemath: Generate fusene and benzenoid graphs with benzene\n===============================================================================\n\n`passagemath <https://github.com/passagemath/passagemath>`__ is open\nsource mathematical software in Python, released under the GNU General\nPublic Licence GPLv2+.\n\nIt is a fork of `SageMath <https://www.sagemath.org/>`__, which has been\ndeveloped 2005-2025 under the motto \u201cCreating a Viable Open Source\nAlternative to Magma, Maple, Mathematica, and MATLAB\u201d.\n\nThe passagemath fork uses the motto \"Creating a Free Passage Between the\nScientific Python Ecosystem and Mathematical Software Communities.\"\nIt was created in October 2024 with the following goals:\n\n-  providing modularized installation with pip,\n-  establishing first-class membership in the scientific Python\n   ecosystem,\n-  giving `clear attribution of upstream\n   projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,\n-  providing independently usable Python interfaces to upstream\n   libraries,\n-  offering `platform portability and integration testing\n   services <https://github.com/passagemath/passagemath/issues/704>`__\n   to upstream projects,\n-  inviting collaborations with upstream projects,\n-  `building a professional, respectful, inclusive\n   community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,\n-  `empowering Sage users to participate in the scientific Python ecosystem\n   <https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,\n-  developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for\n   serverless deployment with Javascript,\n-  developing a native Windows port.\n\n`Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is\navailable online.\n\npassagemath attempts to support and provides binary wheels suitable for\nall major Linux distributions and recent versions of macOS.\n\nBinary wheels for native Windows (x86_64) are are available for a subset of\nthe passagemath distributions. Use of the full functionality of passagemath\non Windows currently requires the use of Windows Subsystem for Linux (WSL)\nor virtualization.\n\nThe supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.\n\n\nAbout this pip-installable distribution package\n-----------------------------------------------\n\nThis pip-installable distribution ``passagemath-benzene`` provides an interface\nto benzene, a program for the efficient generation of all nonisomorphic\nfusenes and benzenoids with a given number of faces.\n\n\nWhat is included\n----------------\n\n* Binary wheels on PyPI contain prebuilt copies of the benzene executable.\n\n\nExamples\n--------\n\nUsing the benzene program on the command line::\n\n    $ pipx run --pip-args=\"--prefer-binary\" --spec \"passagemath-benzene[test]\" sage -sh -c benzene\n\nFinding the installation location of the benzene program::\n\n    $ pipx run --pip-args=\"--prefer-binary\" --spec \"passagemath-benzene[test]\" ipython\n\n    In [1]: from sage.features.graph_generators import Benzene\n\n    In [2]: Benzene().absolute_filename()\n    Out[2]: '.../bin/benzene'\n\nUsing the Python interface::\n\n    $ pipx run --pip-args=\"--prefer-binary\" --spec \"passagemath-benzene[test]\" ipython\n\n    In [1]: from sage.all__sagemath_benzene import *\n\n    In [2]: len(list(graphs.fusenes(9, benzenoids=True)))\n    Out[2]: 6505\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "passagemath: Generate fusene and benzenoid graphs with benzene",
    "version": "10.6.36",
    "project_urls": {
        "discourse": "https://passagemath.discourse.group",
        "documentation": "https://passagemath.org/docs/latest",
        "homepage (upstream)": "https://www.sagemath.org",
        "release notes": "https://github.com/passagemath/passagemath/releases",
        "repo": "https://github.com/passagemath/passagemath",
        "repo (upstream)": "https://github.com/sagemath/sage",
        "tracker": "https://github.com/passagemath/passagemath/issues",
        "tracker (upstream)": "https://github.com/sagemath/sage/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "317a3e4729f682146bad34942b26462b974dde199bd1bc245ed43225ab02d82d",
                "md5": "16fbebe6855d20c90fe9e0a1001bc5e1",
                "sha256": "c11fd4dcfe8936a59e5230f8146fcedbe5eea3f45dbf82f56e07ecc0d2909f14"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp310-cp310-macosx_13_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "16fbebe6855d20c90fe9e0a1001bc5e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.15,>=3.10",
            "size": 28880,
            "upload_time": "2025-11-16T00:38:24",
            "upload_time_iso_8601": "2025-11-16T00:38:24.928007Z",
            "url": "https://files.pythonhosted.org/packages/31/7a/3e4729f682146bad34942b26462b974dde199bd1bc245ed43225ab02d82d/passagemath_benzene-10.6.36-cp310-cp310-macosx_13_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78ec83a3442a1cf53511fa01d045b7a243572ee19754ead352235b01d0d03657",
                "md5": "97e4fa0eff7927a92635508e7a774ce0",
                "sha256": "06c1c3eafce98496b6ec712448b4585e88b9cd1e092de82d043a6fd272f2a998"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp310-cp310-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "97e4fa0eff7927a92635508e7a774ce0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.15,>=3.10",
            "size": 29476,
            "upload_time": "2025-11-16T00:38:23",
            "upload_time_iso_8601": "2025-11-16T00:38:23.040188Z",
            "url": "https://files.pythonhosted.org/packages/78/ec/83a3442a1cf53511fa01d045b7a243572ee19754ead352235b01d0d03657/passagemath_benzene-10.6.36-cp310-cp310-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5dc58ca67e88cb6198df2ba70e95fdf71f5ca3cb80df4344163782273b3554fb",
                "md5": "4cc94add1e444fb60d117552607492f6",
                "sha256": "15a82911535d08889983d571e0e99c981e2c826a4ad2ae56fcfac0c74fa448ba"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4cc94add1e444fb60d117552607492f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.15,>=3.10",
            "size": 48298,
            "upload_time": "2025-11-16T00:39:42",
            "upload_time_iso_8601": "2025-11-16T00:39:42.509553Z",
            "url": "https://files.pythonhosted.org/packages/5d/c5/8ca67e88cb6198df2ba70e95fdf71f5ca3cb80df4344163782273b3554fb/passagemath_benzene-10.6.36-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4b8c2d7abf6a980a70c5476b50293cf031e77efd8606e441ed20add3f2edcb5",
                "md5": "ea4add8d929413c9a4e3781f70b2ae65",
                "sha256": "1240a5e96b3d8885101146664f5d54323268b7bc554c8e715fc65a3e3e8456a3"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ea4add8d929413c9a4e3781f70b2ae65",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.15,>=3.10",
            "size": 51690,
            "upload_time": "2025-11-16T00:39:30",
            "upload_time_iso_8601": "2025-11-16T00:39:30.466932Z",
            "url": "https://files.pythonhosted.org/packages/b4/b8/c2d7abf6a980a70c5476b50293cf031e77efd8606e441ed20add3f2edcb5/passagemath_benzene-10.6.36-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fece04f45e69cb8fa0266b9fc6d86f277121cc0dd74eb749e1b4071b9b02affb",
                "md5": "78b09b63b91e13a63849644e97ae5699",
                "sha256": "81536deef4d773f3d342d000580eedf36e9a598f635ffea2d65a929b1c91c0ea"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "78b09b63b91e13a63849644e97ae5699",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.15,>=3.10",
            "size": 51166,
            "upload_time": "2025-11-16T00:39:08",
            "upload_time_iso_8601": "2025-11-16T00:39:08.898030Z",
            "url": "https://files.pythonhosted.org/packages/fe/ce/04f45e69cb8fa0266b9fc6d86f277121cc0dd74eb749e1b4071b9b02affb/passagemath_benzene-10.6.36-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d2759fd44070967ffd610f40175cee63aecadba92125e02e389fe726a2ec05d",
                "md5": "5f9cef29676b2beba0d6388d88b28f0b",
                "sha256": "0b99eb332ee4422065122983b4d696e942893dfff3709ba688f38d398e56249d"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f9cef29676b2beba0d6388d88b28f0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.15,>=3.10",
            "size": 49620,
            "upload_time": "2025-11-16T00:39:15",
            "upload_time_iso_8601": "2025-11-16T00:39:15.658051Z",
            "url": "https://files.pythonhosted.org/packages/5d/27/59fd44070967ffd610f40175cee63aecadba92125e02e389fe726a2ec05d/passagemath_benzene-10.6.36-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "47507c6e11a1aa7baebca2892285bfde350267d12cc1c217017623e8c449940c",
                "md5": "f57dc12f867d5d0a9ca3be2aff07b436",
                "sha256": "b14f73d264186969c7c70d3f0ccb52c81702847fc64d25c8885272c3d1e2c7d5"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp311-cp311-macosx_13_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f57dc12f867d5d0a9ca3be2aff07b436",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.15,>=3.10",
            "size": 28687,
            "upload_time": "2025-11-16T00:38:30",
            "upload_time_iso_8601": "2025-11-16T00:38:30.534487Z",
            "url": "https://files.pythonhosted.org/packages/47/50/7c6e11a1aa7baebca2892285bfde350267d12cc1c217017623e8c449940c/passagemath_benzene-10.6.36-cp311-cp311-macosx_13_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2ca5d07f80d4feb0c53bb3bcd4a212d1e7980b87e939a0b45c1d967c4990134",
                "md5": "e67f7797080e132b595175439d8439cc",
                "sha256": "f7268228d75c3895ebe7432937379ca081a9fe298a4029d6a6256f205c89e782"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp311-cp311-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e67f7797080e132b595175439d8439cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.15,>=3.10",
            "size": 29220,
            "upload_time": "2025-11-16T00:38:29",
            "upload_time_iso_8601": "2025-11-16T00:38:29.646893Z",
            "url": "https://files.pythonhosted.org/packages/e2/ca/5d07f80d4feb0c53bb3bcd4a212d1e7980b87e939a0b45c1d967c4990134/passagemath_benzene-10.6.36-cp311-cp311-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b3292b44148e049174cf98139a4a5fb44a9b51c02318f3e04a4ada264b13a60",
                "md5": "ac5d27f38602efecf1327149b2218261",
                "sha256": "8467949f8998c5cf98d7553dc549a8e1ac338a5895422904f988576b9224ed07"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac5d27f38602efecf1327149b2218261",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.15,>=3.10",
            "size": 48516,
            "upload_time": "2025-11-16T00:39:48",
            "upload_time_iso_8601": "2025-11-16T00:39:48.958996Z",
            "url": "https://files.pythonhosted.org/packages/6b/32/92b44148e049174cf98139a4a5fb44a9b51c02318f3e04a4ada264b13a60/passagemath_benzene-10.6.36-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc4f85ad1ce23eb4638b691a9c2db66f8f9a1b31917f6ff1755e5bbf0e6d02fe",
                "md5": "faaddadc6e788aed5701d598b448e2a1",
                "sha256": "ff1960c3e85f173bdfba3aa1880a2f6244362d4972799cdcc519fc77e11828ae"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "faaddadc6e788aed5701d598b448e2a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.15,>=3.10",
            "size": 51956,
            "upload_time": "2025-11-16T00:39:31",
            "upload_time_iso_8601": "2025-11-16T00:39:31.884503Z",
            "url": "https://files.pythonhosted.org/packages/cc/4f/85ad1ce23eb4638b691a9c2db66f8f9a1b31917f6ff1755e5bbf0e6d02fe/passagemath_benzene-10.6.36-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1717d50dddd16846c6ebfac9e683eb9e1fcb914c0c0a75d1933902c37c16de49",
                "md5": "7b2d4a0084a31a47ba3efb9d1a305418",
                "sha256": "7b1855b5b06b346a40d40b9fc4901f6541346152831c5a90e78e8379ed9ae00d"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7b2d4a0084a31a47ba3efb9d1a305418",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.15,>=3.10",
            "size": 51478,
            "upload_time": "2025-11-16T00:39:11",
            "upload_time_iso_8601": "2025-11-16T00:39:11.908724Z",
            "url": "https://files.pythonhosted.org/packages/17/17/d50dddd16846c6ebfac9e683eb9e1fcb914c0c0a75d1933902c37c16de49/passagemath_benzene-10.6.36-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4daa827e1dabfce3a32b211383f8f6702daaf442c49fad5ef248f7f2b6a0cc08",
                "md5": "7c9a1ffedeec3d0a5a65f65cb8a3cb3e",
                "sha256": "a47ce0e6cf46288f93553ee6d0d72f59af703aae08925b9fd3bc0e80fc8c4079"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7c9a1ffedeec3d0a5a65f65cb8a3cb3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.15,>=3.10",
            "size": 49858,
            "upload_time": "2025-11-16T00:39:18",
            "upload_time_iso_8601": "2025-11-16T00:39:18.194625Z",
            "url": "https://files.pythonhosted.org/packages/4d/aa/827e1dabfce3a32b211383f8f6702daaf442c49fad5ef248f7f2b6a0cc08/passagemath_benzene-10.6.36-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a3345e746a18676291f2920b6fa91bd46bc785fbc64fb4ebf899d6586cc9b1c",
                "md5": "aacddf60db53ff2a2cc22d310383c9c0",
                "sha256": "e4412d966a8424aaf9bc1b5e3782d755f7d271643137e2999b8d55692fc2446c"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp312-abi3-macosx_13_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "aacddf60db53ff2a2cc22d310383c9c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.15,>=3.10",
            "size": 29233,
            "upload_time": "2025-11-16T00:38:32",
            "upload_time_iso_8601": "2025-11-16T00:38:32.905735Z",
            "url": "https://files.pythonhosted.org/packages/2a/33/45e746a18676291f2920b6fa91bd46bc785fbc64fb4ebf899d6586cc9b1c/passagemath_benzene-10.6.36-cp312-abi3-macosx_13_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e27ddb52c9b22b6470130c027d1ddbea9c5700b439a56c6a2be9790e5cb11e5e",
                "md5": "590caa20d301aaef992bdf940d9c227c",
                "sha256": "c2039a3a338b124a0610b0cf7b43f49f011791b0e1b611447ab734ddb6f98039"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp312-abi3-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "590caa20d301aaef992bdf940d9c227c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.15,>=3.10",
            "size": 29910,
            "upload_time": "2025-11-16T00:38:32",
            "upload_time_iso_8601": "2025-11-16T00:38:32.062870Z",
            "url": "https://files.pythonhosted.org/packages/e2/7d/db52c9b22b6470130c027d1ddbea9c5700b439a56c6a2be9790e5cb11e5e/passagemath_benzene-10.6.36-cp312-abi3-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc23c69bd99fb7516c1867c093c14db460da052448b99704646c94000ca04284",
                "md5": "427b590ff182e6883f417f76a89285ff",
                "sha256": "2e6b704aa8d005f8361f0163fcad391ffaa932505f97273bc00d0f0f1ceec43c"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp312-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "427b590ff182e6883f417f76a89285ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.15,>=3.10",
            "size": 45565,
            "upload_time": "2025-11-16T00:39:54",
            "upload_time_iso_8601": "2025-11-16T00:39:54.243985Z",
            "url": "https://files.pythonhosted.org/packages/bc/23/c69bd99fb7516c1867c093c14db460da052448b99704646c94000ca04284/passagemath_benzene-10.6.36-cp312-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0161f335adaf15311463347b2e0bef122863d7f16261a4a556e6531759ab4dcd",
                "md5": "5a0ee85c9bd4ff3cc3e8e541bbe8c27f",
                "sha256": "7022a002d23e628e3aeaa4ed53a527a54dc507089692bfca2314716dc23253e3"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp312-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5a0ee85c9bd4ff3cc3e8e541bbe8c27f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.15,>=3.10",
            "size": 48584,
            "upload_time": "2025-11-16T00:39:46",
            "upload_time_iso_8601": "2025-11-16T00:39:46.622096Z",
            "url": "https://files.pythonhosted.org/packages/01/61/f335adaf15311463347b2e0bef122863d7f16261a4a556e6531759ab4dcd/passagemath_benzene-10.6.36-cp312-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6368617c92f7d09e1ee4803330657b637b456d6f4f17e3716554cea57188174a",
                "md5": "8c7188a9e7a1659850036c5747de68da",
                "sha256": "5cf39a58bfc70d251a45e65717dbc32b93c9764136d66dc302bfef270ad9e2d5"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp312-abi3-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8c7188a9e7a1659850036c5747de68da",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.15,>=3.10",
            "size": 48127,
            "upload_time": "2025-11-16T00:39:16",
            "upload_time_iso_8601": "2025-11-16T00:39:16.190013Z",
            "url": "https://files.pythonhosted.org/packages/63/68/617c92f7d09e1ee4803330657b637b456d6f4f17e3716554cea57188174a/passagemath_benzene-10.6.36-cp312-abi3-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ad293963dd30aa3c20cf5f2d5e4179253f576bbe0d3b10b20032a843327e046",
                "md5": "93e0f6f9045b984ad4f8e7c46726bcc0",
                "sha256": "62d7013d9e2b3a3f1a19ee480d1258cb351b65e700b954197e03350ea0a97cbb"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp312-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "93e0f6f9045b984ad4f8e7c46726bcc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.15,>=3.10",
            "size": 46620,
            "upload_time": "2025-11-16T00:39:21",
            "upload_time_iso_8601": "2025-11-16T00:39:21.854194Z",
            "url": "https://files.pythonhosted.org/packages/0a/d2/93963dd30aa3c20cf5f2d5e4179253f576bbe0d3b10b20032a843327e046/passagemath_benzene-10.6.36-cp312-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c88863fc0bdd71373251c9aaf0924628b2e87d40c48a2762cf30ce4531619ef0",
                "md5": "25c770566eb9fabf794cdfd3b76d8ee4",
                "sha256": "8a6a4dc6681f26b108ad3484a72b11deb4b4538955d1f5f0efc11a1904a20c89"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp314-cp314t-macosx_13_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "25c770566eb9fabf794cdfd3b76d8ee4",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<3.15,>=3.10",
            "size": 29227,
            "upload_time": "2025-11-16T00:38:35",
            "upload_time_iso_8601": "2025-11-16T00:38:35.482575Z",
            "url": "https://files.pythonhosted.org/packages/c8/88/63fc0bdd71373251c9aaf0924628b2e87d40c48a2762cf30ce4531619ef0/passagemath_benzene-10.6.36-cp314-cp314t-macosx_13_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b772c6de59b25ffca4e17765e4e2decd861f6e4d15b4271d676594bb8dcad97e",
                "md5": "99a38858be7e6b9ad1bfe2ded2dd4a07",
                "sha256": "40c5b139651b46d7964794757376853586063df72aaf36bbb52f759d693c9ef2"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp314-cp314t-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99a38858be7e6b9ad1bfe2ded2dd4a07",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<3.15,>=3.10",
            "size": 29798,
            "upload_time": "2025-11-16T00:38:34",
            "upload_time_iso_8601": "2025-11-16T00:38:34.591821Z",
            "url": "https://files.pythonhosted.org/packages/b7/72/c6de59b25ffca4e17765e4e2decd861f6e4d15b4271d676594bb8dcad97e/passagemath_benzene-10.6.36-cp314-cp314t-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "050b05abbcaa0fe309a7c2b0a31f162b8ca500c3d725741d4901f4e2d7b41685",
                "md5": "35fb9550ab6d32c10059d2893f1b3679",
                "sha256": "843a3b10e7f0d325b77302b6ea61d4eba60d580108ab5c86cfbb35152997fb7a"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "35fb9550ab6d32c10059d2893f1b3679",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<3.15,>=3.10",
            "size": 51311,
            "upload_time": "2025-11-16T00:39:57",
            "upload_time_iso_8601": "2025-11-16T00:39:57.976811Z",
            "url": "https://files.pythonhosted.org/packages/05/0b/05abbcaa0fe309a7c2b0a31f162b8ca500c3d725741d4901f4e2d7b41685/passagemath_benzene-10.6.36-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a5289918e2e13525741131360a15f531c77d8aff10d6cec4ecd5deb7dab7b4fa",
                "md5": "0029689bd15a32bf17acf3f755cf806a",
                "sha256": "e90750a9f5ded38ab8e0ff02074538b658e4e017fd4d0923c1c59b5bead96366"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0029689bd15a32bf17acf3f755cf806a",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<3.15,>=3.10",
            "size": 55319,
            "upload_time": "2025-11-16T00:39:49",
            "upload_time_iso_8601": "2025-11-16T00:39:49.838718Z",
            "url": "https://files.pythonhosted.org/packages/a5/28/9918e2e13525741131360a15f531c77d8aff10d6cec4ecd5deb7dab7b4fa/passagemath_benzene-10.6.36-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c825a64189933de1e58483ed7eb3dbf441d55f5bdb46b5ef13c51ce151895652",
                "md5": "c426390fa7100eda474a4a9bfb8c7675",
                "sha256": "611eff67fb3140472311049bf1af8b1830e57bd771414a1d0a46c1a1537d3e62"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c426390fa7100eda474a4a9bfb8c7675",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<3.15,>=3.10",
            "size": 54339,
            "upload_time": "2025-11-16T00:39:19",
            "upload_time_iso_8601": "2025-11-16T00:39:19.451760Z",
            "url": "https://files.pythonhosted.org/packages/c8/25/a64189933de1e58483ed7eb3dbf441d55f5bdb46b5ef13c51ce151895652/passagemath_benzene-10.6.36-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "948e3a7316e8b5e6d7acab5088a76dde7d8318256cddaaa457dd2e31254bb0a5",
                "md5": "293fbadfa05f97a37e8724cf266a33d5",
                "sha256": "5de59f78cb7c040edfc46254c4b40b5dc44663e95bcc1fbb712e44cadf538ce2"
            },
            "downloads": -1,
            "filename": "passagemath_benzene-10.6.36-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "293fbadfa05f97a37e8724cf266a33d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": "<3.15,>=3.10",
            "size": 49848,
            "upload_time": "2025-11-16T00:39:24",
            "upload_time_iso_8601": "2025-11-16T00:39:24.490008Z",
            "url": "https://files.pythonhosted.org/packages/94/8e/3a7316e8b5e6d7acab5088a76dde7d8318256cddaaa457dd2e31254bb0a5/passagemath_benzene-10.6.36-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-11-16 00:38:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "passagemath",
    "github_project": "passagemath",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "passagemath-benzene"
}
        
Elapsed time: 0.48845s