Metadata-Version: 2.4
Name: jaxpolylog
Version: 0.3.0
Summary: JAX-compatible polylogarithm functions with automatic differentiation.
Home-page: https://github.com/AndreasSchachner/jaxpolylog
Author: Andreas Schachner
Author-email: as3475@cornell.edu
License: GPL-3.0-or-later
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Topic :: Scientific/Engineering :: Mathematics
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: jax
Requires-Dist: jaxlib
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# jaxpolylog

This repository provides implementations of polylogarithm functions using JAX, enabling efficient computation and automatic differentiation.

## Installation

The recommended way to install the package is via [pip](https://packaging.python.org/en/latest/key_projects/#pip). Before installing, make sure your packaging tools are up to date by running:

`pip install --upgrade pip setuptools`

Next, choose the installation method that best fits your use case:

- **Install from PyPI (recommended):**  
  `pip install jaxpolylog`

- **Install directly from GitHub:**  
  If you want the latest development version:
  `pip install git+https://github.com/AndreasSchachner/jaxpolylog.git`

- **Install from a local clone (recommended for development):**  
  If you plan to actively develop or experiment with the code, first download or clone the repository. Then navigate to the root directory of the project in a terminal and run:
  `pip install -e .`  
  The `-e` (editable) option ensures that any local code changes take effect immediately without requiring reinstallation.

## Repository structure

The repository is organized as follows
    .
    ├── jaxpolylog/
    ├── tests/
    ├── LICENSE
    ├── README.md


## Contact

For questions or feedback, please get in touch: <as3475@cornell.edu>.



