Metadata-Version: 2.4
Name: disaster_factor
Version: 0.2.0
Summary: Business Continuity Disaster Tracker
License: GPL-3.0-or-later
License-File: LICENSE
Keywords: disaster,tracking,business-continuity
Author: Jeff Stock
Author-email: jeff.stock@hiredlabs.org
Requires-Python: >=3.10
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: beautifulsoup4 (==4.14.2)
Requires-Dist: certifi (==2025.10.5)
Requires-Dist: charset-normalizer (==3.4.4)
Requires-Dist: colorama (==0.4.6)
Requires-Dist: idna (==3.11)
Requires-Dist: lxml (==6.0.2)
Requires-Dist: packaging (==25.0)
Requires-Dist: python-dotenv (>=1.2.1,<2.0.0)
Requires-Dist: requests (==2.32.5)
Requires-Dist: soupsieve (==2.8)
Requires-Dist: typing_extensions (==4.15.0)
Requires-Dist: urllib3 (==2.5.0)
Project-URL: Repository, https://github.com/HiredLabs-inc/disaster_factor
Description-Content-Type: text/markdown

# Disaster Factor

Business Continuity Disaster Tracker.

## Requirements
- Python >= 3.10

## Installation

Using Poetry (recommended):
```bash
poetry install
```

Using pip:
```bash
python -m venv .venv
. .venv/bin/activate
pip install -e .
```

## Usage

```bash
disaster-factor --version
disaster-factor track --help
```

If you add a console script entry point later, the installed command will mirror the same subcommands.

## Contributing

Set up a dev environment and run tests:
```bash
# with Poetry
deactivate 2>/dev/null || true
poetry install --with dev
poetry run pytest -q

# or with pip
python -m venv .venv
. .venv/bin/activate
pip install -e .[dev]
pytest -q
```

## License

MIT License. See `LICENSE`.

