Metadata-Version: 2.3
Name: tempconvert-atharv22
Version: 0.1.3
Summary: A simple temperature conversion tool
License: MIT
Author: Atharv
Author-email: atharvachaugale22@gmail.com
Requires-Python: >=3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Description-Content-Type: text/markdown

# Tempconvert


A simple Python package to convert temperatures between Celsius and Fahrenheit.

---

## 📦 Installation

```bash
# Install via pip (from PyPI)
pip install tempconvert-atharv22
```

```bash
# Or if you're using Poetry for development
poetry install
```

---

## 🚀 Usage

```bash
# Example Python usage
from tempconvert import celsius_to_fahrenheit, fahrenheit_to_celsius

print(celsius_to_fahrenheit(0))      # Output: 32.0
print(fahrenheit_to_celsius(212))    # Output: 100.0
```

---

## 🧪 Running Tests

```bash
# Make sure you're in the virtual environment. Then run:
pytest
```

```bash
# All test cases are inside the tests/ folder
# For example:
tests/test_main.py
```

---

## 🔧 Development Setup

```bash
# Clone the repository
git clone https://github.com/YOUR_USERNAME/tempconvert
cd tempconvert
```

```bash
# Install dependencies using Poetry
poetry install
```

```bash
# Activate the virtual environment
poetry env info --path

# Then manually activate it based on your OS path
```

---

## 📤 Publish to PyPI (For Maintainers Only)

```bash
# Make sure you have the correct PyPI token set in GitHub secrets as PYPI_API_TOKEN
# Bump the version in pyproject.toml
```

```bash
# Tag the new version:
git tag v0.1.x
git push origin v0.1.x

# GitHub Actions will auto-publish to PyPI
```

---

## 🤝 Contributing

```bash
# Feel free to fork and create PRs!
# Make sure to include test coverage for new features.
```

---

## 📄 License

```bash
MIT License © Atharv Chougale
```

