pyx-core


Namepyx-core JSON
Version 1.23.0 PyPI version JSON
download
home_pageNone
SummaryAll core functionalities for using PyXMake as a build system
upload_time2025-07-29 06:31:06
maintainerNone
docs_urlNone
authorGarbade, Marc
requires_python!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7
licenseMIT
keywords compilation documentation packaging
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![doi](https://img.shields.io/badge/DOI-10.5281%2Fzenodo.13352143-red.svg)](https://zenodo.org/records/13352143)
[![doc](https://img.shields.io/static/v1?label=Pages&message=User%20Guide&color=blue&style=flat&logo=gitlab)](https://dlr-sy.gitlab.io/pyxmake)
[![PyPi](https://img.shields.io/pypi/v/pyx-core?label=PyPi)](https://pypi.org/project/pyx-core)

# PyXMake
> This subpackage belongs to [PyXMake](https://gitlab.com/dlr-sy/pyxmake) and contains all core functionalities. It is installed automatically with the parent project. However, it is also separately available as a build system dependency. Please refer to the linked [repository](https://gitlab.com/dlr-sy/pyxmake) for documentation and application examples. If you came across the project via the [GitLab Catalog Explorer](https://gitlab.com/explore/catalog), you can jump directly to the [CI/CD Catalog section](#cicd-catalog)

## Downloading
Use GIT to get the latest code base. From the command line, use
```
git clone https://gitlab.dlr.de/dlr-sy/pyxmake pyxmake
```
If you check out the repository for the first time, you have to initialize all submodule dependencies first. Execute the following from within the repository. 
```
git submodule update --init --recursive
```
To fetch all required metadata for each submodule, use
```
git submodule foreach --recursive 'git checkout $(git config -f $toplevel/.gitmodules submodule.$name.branch || echo master) || git checkout main'
```
To update all refererenced submodules to the latest production level, use
```
git submodule foreach --recursive 'git pull origin $(git config -f $toplevel/.gitmodules submodule.$name.branch || echo master) || git pull origin main'
```
## Installation
PyXMake can be installed from source using [poetry](https://python-poetry.org). If you don't have [poetry](https://python-poetry.org) installed, run
```
pip install poetry --pre --upgrade
```
to install the latest version of [poetry](https://python-poetry.org) within your python environment. Use
```
poetry update
```
to update all dependencies in the lock file or directly execute
```
poetry install
```
to install all dependencies from the lock file. Last, you should be able to import PyXMake as a python package.
```python
import PyXMake
```
## CI/CD Catalog
[PyXMake](https://gitlab.com/dlr-sy/pyxmake) provides its software development and deployment capabilities as pre-built [CI/CD components](https://docs.gitlab.com/ee/ci/components/). The individual components can be integrated either directly via the CI/CD Catalog or classically via the "include" syntax. The components are divided into three groups:
* General
* Python
* Docker

To include a given component, use
```yaml
include:
  - component: $CI_SERVER_FQDN/<groupname>/PyXMake/<component>@<tag>
```
where *\<groupname\>* depends on the local Gitlab repository, *\<component\>* refers to the name of the component under *templates\/*\* and *\<tag\>* to a specific version. *\<tag\>* can also be set to *master* to always use the latest yet potentially unstable version.
## Contact
* [Marc Garbade](mailto:marc.garbade@dlr.de)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pyx-core",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7",
    "maintainer_email": null,
    "keywords": "compilation, documentation, packaging",
    "author": "Garbade, Marc",
    "author_email": "marc.garbade@dlr.de",
    "download_url": "https://files.pythonhosted.org/packages/08/3f/0cbfaf46153ebda160d747ecc9dcfa6a5f5c4c0af398616693d7ecef543a/pyx_core-1.23.0.tar.gz",
    "platform": null,
    "description": "[![doi](https://img.shields.io/badge/DOI-10.5281%2Fzenodo.13352143-red.svg)](https://zenodo.org/records/13352143)\n[![doc](https://img.shields.io/static/v1?label=Pages&message=User%20Guide&color=blue&style=flat&logo=gitlab)](https://dlr-sy.gitlab.io/pyxmake)\n[![PyPi](https://img.shields.io/pypi/v/pyx-core?label=PyPi)](https://pypi.org/project/pyx-core)\n\n# PyXMake\n> This subpackage belongs to [PyXMake](https://gitlab.com/dlr-sy/pyxmake) and contains all core functionalities. It is installed automatically with the parent project. However, it is also separately available as a build system dependency. Please refer to the linked [repository](https://gitlab.com/dlr-sy/pyxmake) for documentation and application examples. If you came across the project via the [GitLab Catalog Explorer](https://gitlab.com/explore/catalog), you can jump directly to the [CI/CD Catalog section](#cicd-catalog)\n\n## Downloading\nUse GIT to get the latest code base. From the command line, use\n```\ngit clone https://gitlab.dlr.de/dlr-sy/pyxmake pyxmake\n```\nIf you check out the repository for the first time, you have to initialize all submodule dependencies first. Execute the following from within the repository. \n```\ngit submodule update --init --recursive\n```\nTo fetch all required metadata for each submodule, use\n```\ngit submodule foreach --recursive 'git checkout $(git config -f $toplevel/.gitmodules submodule.$name.branch || echo master) || git checkout main'\n```\nTo update all refererenced submodules to the latest production level, use\n```\ngit submodule foreach --recursive 'git pull origin $(git config -f $toplevel/.gitmodules submodule.$name.branch || echo master) || git pull origin main'\n```\n## Installation\nPyXMake can be installed from source using [poetry](https://python-poetry.org). If you don't have [poetry](https://python-poetry.org) installed, run\n```\npip install poetry --pre --upgrade\n```\nto install the latest version of [poetry](https://python-poetry.org) within your python environment. Use\n```\npoetry update\n```\nto update all dependencies in the lock file or directly execute\n```\npoetry install\n```\nto install all dependencies from the lock file. Last, you should be able to import PyXMake as a python package.\n```python\nimport PyXMake\n```\n## CI/CD Catalog\n[PyXMake](https://gitlab.com/dlr-sy/pyxmake) provides its software development and deployment capabilities as pre-built [CI/CD components](https://docs.gitlab.com/ee/ci/components/). The individual components can be integrated either directly via the CI/CD Catalog or classically via the \"include\" syntax. The components are divided into three groups:\n* General\n* Python\n* Docker\n\nTo include a given component, use\n```yaml\ninclude:\n  - component: $CI_SERVER_FQDN/<groupname>/PyXMake/<component>@<tag>\n```\nwhere *\\<groupname\\>* depends on the local Gitlab repository, *\\<component\\>* refers to the name of the component under *templates\\/*\\* and *\\<tag\\>* to a specific version. *\\<tag\\>* can also be set to *master* to always use the latest yet potentially unstable version.\n## Contact\n* [Marc Garbade](mailto:marc.garbade@dlr.de)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "All core functionalities for using PyXMake as a build system",
    "version": "1.23.0",
    "project_urls": {
        "Changelog": "https://gitlab.com/dlr-sy/pyxmake/-/blob/master/CHANGELOG.md",
        "Documentation": "https://dlr-sy.gitlab.io/pyxmake",
        "Repository": "https://gitlab.com/dlr-sy/pyxmake"
    },
    "split_keywords": [
        "compilation",
        " documentation",
        " packaging"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e05c7d7ec2e6de84fbd32de1e8260d8f9cdaf81491257ee839e32812b02a2af",
                "md5": "a5aad2a5604b3138957237de5ff84569",
                "sha256": "f5e18998ba83ef4db2cb9ded17d3bf479d7bc6d9366a337ec8a5c03edcaebb3a"
            },
            "downloads": -1,
            "filename": "pyx_core-1.23.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a5aad2a5604b3138957237de5ff84569",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7",
            "size": 2904919,
            "upload_time": "2025-07-29T06:31:00",
            "upload_time_iso_8601": "2025-07-29T06:31:00.923390Z",
            "url": "https://files.pythonhosted.org/packages/7e/05/c7d7ec2e6de84fbd32de1e8260d8f9cdaf81491257ee839e32812b02a2af/pyx_core-1.23.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "083f0cbfaf46153ebda160d747ecc9dcfa6a5f5c4c0af398616693d7ecef543a",
                "md5": "a802c3c7e821ad0f28a54024b2de825c",
                "sha256": "a80c494babfba3ed8c5ad1c7c97176e68a77c983da66645df0e7265ce44e8055"
            },
            "downloads": -1,
            "filename": "pyx_core-1.23.0.tar.gz",
            "has_sig": false,
            "md5_digest": "a802c3c7e821ad0f28a54024b2de825c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7",
            "size": 2304788,
            "upload_time": "2025-07-29T06:31:06",
            "upload_time_iso_8601": "2025-07-29T06:31:06.891819Z",
            "url": "https://files.pythonhosted.org/packages/08/3f/0cbfaf46153ebda160d747ecc9dcfa6a5f5c4c0af398616693d7ecef543a/pyx_core-1.23.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-29 06:31:06",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "codeberg": false,
    "gitlab_user": "dlr-sy",
    "gitlab_project": "pyxmake",
    "lcname": "pyx-core"
}
        
Elapsed time: 1.91313s