Metadata-Version: 2.3
Name: prymes
Version: 0.0.1a1
Summary: Python package for prime-related things
Author-email: Jingyang Wang <wangjy2010@126.com>
Maintainer-email: Jingyang Wang <wangjy2010@126.com>
License-File: LICENSE
Keywords: number-theory,primes
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# PrYmes

![PyPI - Version](https://img.shields.io/pypi/v/prymes)
![PyPI - License](https://img.shields.io/pypi/l/prymes)

Python package for prime-related things.

## Install

### (Recommended) pip

To install PrYmes using pip, run the following command:
```
pip install prymes
```

### Source

To install PrYmes from source, clone PrYmes' Github repository using `git`:
```
git clone https://github.com/cyan-ice/prymes.git
```
Then, in the `prymes` repository you just cloned, execute the following command:
```
pip install dist/prymes-*-py3-none-any.whl
```
Where `*` is the latest version of PrYmes.

## Testing

To execute all tests, run
```
python tests/test.py
```
In the current directory.

You should see something like this:
```
Test #1: primality_test... Passed in 0.012s
Passed 1/1
```

## Documentation

The documentation is at https://prymes-docs.readthedocs.io/latest/.
