Metadata-Version: 2.4
Name: CrSDKPy
Version: 0.0.1a1
Summary: An independent Python interface for Sony Camera Remote SDK
Author: Jamal El Siblany
License-Expression: MIT
Project-URL: Homepage, https://github.com/PICKLERICK2005/CrSDKPy
Project-URL: Repository, https://github.com/PICKLERICK2005/CrSDKPy
Project-URL: Issues, https://github.com/PICKLERICK2005/CrSDKPy/issues
Keywords: camera,sony,remote-control,sdk
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Multimedia :: Graphics :: Capture :: Digital Camera
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: build>=1.2; extra == "dev"
Requires-Dist: pytest>=8; extra == "dev"
Requires-Dist: ruff>=0.9; extra == "dev"
Dynamic: license-file

# CrSDKPy

CrSDKPy is intended to become a cross-platform Python interface/wrapper for
Sony Camera Remote SDK (CRSDK). It is an independent community project and is
currently at a very early bootstrap stage: version `0.0.1a1` exposes only the
package version and does not yet provide camera-control functionality.

## Sony Camera Remote SDK dependency

Sony Camera Remote SDK is an external dependency. Users are responsible for
obtaining it from Sony, accepting its terms, and supplying an appropriate SDK
installation for their platform when future CrSDKPy versions require it.

This repository and its distributions do **not** redistribute Sony headers,
libraries, DLLs, samples, documentation, or any other Sony SDK files.

CrSDKPy is not affiliated with, endorsed by, or sponsored by Sony Corporation
or any of its affiliates. Sony and Camera Remote SDK are trademarks or names
of their respective owners.

## Installation

```console
python -m pip install CrSDKPy
```

The bootstrap release can be inspected with:

```python
import crsdkpy

print(crsdkpy.__version__)
```

## Development

```console
python -m venv .venv
python -m pip install -e ".[dev]"
python -m ruff check .
python -m pytest
python -m build
```

## License

CrSDKPy is distributed under the MIT License. See [LICENSE](LICENSE).
