Metadata-Version: 2.4
Name: deepranker
Version: 0.1.0
Summary: A lightweight Python library for basic arithmetic operations.
Author: Sercan
License: MIT
License-File: LICENSE
Keywords: arithmetic,calculator,library,math
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Provides-Extra: dev
Requires-Dist: build>=1.2.2; extra == 'dev'
Requires-Dist: pytest>=8.3.0; extra == 'dev'
Requires-Dist: twine>=5.1.0; extra == 'dev'
Description-Content-Type: text/markdown

# DeepRanker

DeepRanker is a small Python library that provides basic arithmetic operations.

## Installation

```bash
pip install deepranker
```

## Quick start

```python
from deepranker import add, subtract, multiply, divide

print(add(10, 5))
print(subtract(10, 5))
print(multiply(10, 5))
print(divide(10, 5))
```

## Available functions

- `add(a, b)`
- `subtract(a, b)`
- `multiply(a, b)`
- `divide(a, b)`

## Local build

```bash
python -m pip install --upgrade build twine
python -m build
python -m twine check dist/*
```

## Publish to PyPI

```bash
python -m twine upload dist/*
```

If your package name is already taken on PyPI, change the `name` field in `pyproject.toml` before publishing.

