Metadata-Version: 2.1
Name: click-datetime
Version: 0.3.0
Summary: Datetime type support for click.
License: MIT
Author: Dawson R
Author-email: 105720-ddaws@users.noreply.gitlab.com
Requires-Python: >=3.12,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: click (>=6.6,<7.0)
Requires-Dist: wheel (>=0.44.0,<0.45.0)
Description-Content-Type: text/markdown

# Click Datetime (in progress)

Click support for Python's `datetime` types to allow developers to easy parse 
date strings as parameters to Python click CLIs.

## Example

```bash
$ my-app import-task --start-date=2015-01-01 --end-date=2016-01-01
```

## Development

### Building and packaging

```bash
poetry build
```

### Testing the compiled wheel

```bash
# Create a virtual environment for testing
python -m .venv/test
source .venv/test/bin/activate

# Confirm importing and exporting is correct
python -c 'import click_datetime as cd; print(dir(cd))'
```

## Authors

- Dawson Reid (@ddaws)

