Metadata-Version: 2.4
Name: panda-server
Version: 0.6.9
Summary: Unified PanDA Server and JEDI Package
Project-URL: Homepage, https://panda-wms.readthedocs.io/en/latest/
Author-email: PanDA Team <panda-support@cern.ch>
License: Apache-2.0
License-File: LICENSE.txt
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Requires-Dist: bs4
Requires-Dist: cwl-utils>=0.13
Requires-Dist: idds-atlas
Requires-Dist: idds-client
Requires-Dist: idds-common
Requires-Dist: idds-doma
Requires-Dist: idds-workflow>=1.1.0
Requires-Dist: mod-wsgi
Requires-Dist: numpy
Requires-Dist: packaging
Requires-Dist: panda-client-light>=1.5.55
Requires-Dist: panda-common>=0.1.5
Requires-Dist: polars
Requires-Dist: psutil>=5.4.8
Requires-Dist: pyjwt
Requires-Dist: pyopenssl
Requires-Dist: python-daemon
Requires-Dist: pyyaml
Requires-Dist: requests
Requires-Dist: ruamel-yaml
Requires-Dist: scipy
Requires-Dist: snakemake==7.30.1
Requires-Dist: stomp-py
Requires-Dist: werkzeug
Provides-Extra: atlasprod
Requires-Dist: elasticsearch; extra == 'atlasprod'
Requires-Dist: numpy; extra == 'atlasprod'
Requires-Dist: oracledb; extra == 'atlasprod'
Requires-Dist: rucio-clients; extra == 'atlasprod'
Requires-Dist: scipy; extra == 'atlasprod'
Provides-Extra: elasticsearch
Requires-Dist: elasticsearch; extra == 'elasticsearch'
Provides-Extra: mcp
Requires-Dist: fastmcp; extra == 'mcp'
Requires-Dist: uvicorn; extra == 'mcp'
Provides-Extra: mysql
Requires-Dist: mysqlclient; extra == 'mysql'
Provides-Extra: oracle
Requires-Dist: oracledb; extra == 'oracle'
Provides-Extra: postgres
Requires-Dist: psycopg2-binary; extra == 'postgres'
Provides-Extra: rucio
Requires-Dist: rucio-clients; extra == 'rucio'
Description-Content-Type: text/markdown

# Monorepo for The PanDA Server and JEDI

[![PyPI](https://img.shields.io/pypi/v/panda-server)](https://pypi.org/project/panda-server/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/panda-server)](https://pypi.org/project/panda-server/)
[![PyPI - License](https://img.shields.io/pypi/l/panda-server)](https://pypi.org/project/panda-server/)

## Overall PanDA documentation 

https://panda-wms.readthedocs.io/en/latest/

## Installation and distribution
### Installation via PyPI
``` conslole
$ pip install panda-server
```

### Installation from GitHub repository
``` console
$ pip install git+https://github.com/PanDAWMS/panda-server.git
```

### Installation from local Git clone
``` console
$ git clone
$ cd panda-server
$ pip install .
```

### Making source distribution to be published on PyPI
``` console
$ cd panda-server
$ python -m build -s
```

## Making Unified Docker image
``` console
$ git clone
$ cd panda-server
$ docker build .
```