Metadata-Version: 2.4
Name: gateway-defender
Version: 0.1.0
Summary: Reusable Django app gateway-defender
Author-email: Muhammad Rabi Uddin <rabiuddin1@gmail.com>
License: MIT License
        
        Copyright (c) 2025 Your Name
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        ... (standard MIT text) ...
Keywords: django,accounts,authentication,users
Classifier: Framework :: Django
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: Django<5,>=3.2

# gateway-defender

gateway-defender is a small, reusable Django app that provides authentication helpers (login/logout views), a protected portal view, session timeout handling, and packaged templates/static assets. The PyPI distribution name is `gateway-defender`; the importable Python package is `gateway_defender`.

---

## Install

Install from PyPI with pip:

```bash
pip install gateway-defender
```

For local development, install editable from the repository root:

```bash
pip install -e /path/to/django-accounts
```

---

## Quick start

1. Add to `INSTALLED_APPS` in your Django settings:

```py
INSTALLED_APPS = [
    # ...
    "gateway_defender",
]
```

2. Include the URLs in your project `urls.py`:

```py
from django.urls import include, path

urlpatterns = [
    path("", include("gateway_defender.urls")),
]
```

3. Run migrations:

```bash
python manage.py migrate
```

4. Routes provided by the app:
- `GET /` — login page (uses `gateway_defender/gateway.html`)
- `GET /portal/` — protected portal page
- `GET /logout/` — logout and redirect to `index`

---


## API / Files included

Key modules included in the package:

- `gateway_defender.models` — `AuthToggle`, `PassPhrase`
- `gateway_defender.views` — `Gateway` (login view) and `EndSession` (logout view)
- `gateway_defender.urls` — URL patterns included above
- `gateway_defender.custom_decorator` — `protected_redirect` decorator
- `gateway_defender/templates/` — packaged templates (gateway_defender/gateway.html, gateway_defender/logged_out.html)
- `gateway_defender/static/` — CSS and images

Refer to module docstrings and the source for details.

---

## Compatibility

- Python: 3.10 — 3.13
- Django: >= 4.2 (tested with Django 5.2)

---

## Development

Run tests and linters in your development environment. For local development:

```bash
pip install -r requirements-dev.txt  # if you create one
pytest
```

When preparing a release:

1. Update `pyproject.toml` version and metadata.
2. Build with `python -m build`.
3. Upload with `twine upload dist/*`.

---

## Contributing

Contributions are welcome. Please open issues or PRs and include tests for new behavior. Keep public APIs stable where possible.

---

## License

MIT — see the `LICENSE` file included in the repository.

---

## Project & PyPI

PyPI package name: `gateway-defender`  
Python package (import): `gateway_defender`  

Update the repository or PyPI URLs here if you host the project on GitHub or another platform.

