Metadata-Version: 2.1
Name: datayoga
Version: 1.37.0
Summary: DataYoga command line interface
License: Apache-2.0
Author: DataYoga
Author-email: admin@datayoga.io
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Database
Provides-Extra: test
Requires-Dist: PyYAML (>=6.0,<7.0)
Requires-Dist: certifi (>=2022.12.7,<2023.0.0)
Requires-Dist: click (>=8.0.3,<9.0.0)
Requires-Dist: datayoga-core (>=1.0.0,<2.0.0)
Requires-Dist: jsonschema (>=4.4.0,<5.0.0)
Requires-Dist: mock (>=4.0.3,<5.0.0) ; extra == "test"
Requires-Dist: pytest (>=7.1.2,<8.0.0) ; extra == "test"
Requires-Dist: pytest-asyncio (>=0.20.1,<0.21.0)
Requires-Dist: pytest-describe (>=2.0.1,<3.0.0) ; extra == "test"
Requires-Dist: pytest-mock (>=3.7.0,<4.0.0) ; extra == "test"
Requires-Dist: pytest-timeout (>=2.1.0,<3.0.0) ; extra == "test"
Requires-Dist: requests-mock (>=1.9.3,<2.0.0) ; extra == "test"
Project-URL: url, https://datayoga.io
Description-Content-Type: text/markdown

# DataYoga CLI

## Development

To set up environment in development mode:

### Set Up Virtual Environment

```bash
python -m venv venv
source venv/bin/activate
```

### Upgrade `pip` to Latest Version

> [Pip](https://pypi.org/project/pip) version 22 and up is needed for editable install.

```bash
python -m pip install --upgrade pip
```

### Install Dependencies

```bash
cd core
python -m pip install -e .
```

## Run CLI in Development Mode

```bash
python ./cli/src/datayoga/__main__.py
```

