Metadata-Version: 2.2
Name: openovai
Version: 0.0.0
Summary: An early stub of OpenOv AI - see https://openov.ai
Author-email: Nil Caream <openovai@openov.ai>
License: MIT
Project-URL: Homepage, https://openov.ai
Project-URL: Source, https://github.com/nilcaream/openovai
Keywords: openovai,openov
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# openovai

An early stub of **OpenOv AI**.

- Home page: https://openov.ai
- Source: https://github.com/nilcaream/openovai

This is version `0.0.0`. It carries no product functionality yet — it exposes the
project's own version and links, so a program that depends on `openovai` can
report where the package came from. The API below is what the package does today,
in full.

## Install

```
pip install openovai
```

## Use

```python
>>> import openovai
>>> openovai.__version__
'0.0.0'
>>> openovai.project_url()
'https://openov.ai'
>>> openovai.project_url(source=True)
'https://github.com/nilcaream/openovai'
>>> openovai.info()
{'name': 'openovai', 'version': '0.0.0', 'homepage': 'https://openov.ai', 'source': 'https://github.com/nilcaream/openovai'}
```

`project_url(source=False)` returns the home page, or the source repository when
`source` is true. `info()` returns the same values as a dictionary, together with
the package name and version — handy in a bug report or an `--version` banner.

## License

MIT
