Metadata-Version: 2.4
Name: cas-metadata-tools
Version: 1.0.1
Summary: Tools for working with metadata in various file formats
Project-URL: Homepage, https://github.com/calacademy-research/metadata_tools
Project-URL: Bug Tracker, https://github.com/calacademy-research/metadata_tools/issues
Author-email: Matthew De La Roca <mdelaroca@calacademy.org>, Joe Russack <jrussack@calacademy.org>, Shiqi Yang <shyang@calacademy.org>
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Python: <3.13,>=3.12
Requires-Dist: wrapt-timeout-decorator~=1.5.1
Provides-Extra: dev
Requires-Dist: pytest~=8.3.3; extra == 'dev'
Requires-Dist: setuptools~=75.2.0; extra == 'dev'
Requires-Dist: wheel~=0.44.0; extra == 'dev'
Provides-Extra: test
Requires-Dist: pandas~=2.2.3; extra == 'test'
Requires-Dist: pytest~=8.3.3; extra == 'test'
Description-Content-Type: text/markdown

# Metadata Tools

A Python package for working with metadata in various file formats.

## Installation

### From GitHub Package Registry

```bash
pip install cas-metadata-tools --index-url https://github.com/calacademy-research/metadata_tools/packages
```

## Requirements

- Python 3.8 or higher
- ExifTool (must be installed on your system)

### Installing ExifTool

#### macOS
```bash
brew install exiftool
```

#### Ubuntu/Debian
```bash
sudo apt-get install libimage-exiftool-perl
```

#### Windows
Download from [ExifTool website](https://exiftool.org/) and add to your PATH.

## Usage

```python
from cas_metadata_tools import your_module

# Add usage examples here
```

## Development

1. Clone the repository:
```bash
git clone https://github.com/calacademy-research/metadata_tools.git
cd metadata_tools
```

2. Install development dependencies:
```bash
pip install -e ".[dev]"
```

3. Run tests:
```bash
python -m pytest
```

## License

This project is licensed under the MIT License - see the LICENSE file for details.
