Metadata-Version: 2.1
Name: nnql
Version: 0.1.0
Summary: graph instrumentation
Home-page: https://github.com/uchuhimo/nnql
License: Apache-2.0
Author: uchuhimo
Author-email: uchuhimo@outlook.com
Requires-Python: >=3.6
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Provides-Extra: all
Provides-Extra: pytorch
Provides-Extra: tensorflow
Requires-Dist: click
Requires-Dist: contextvars; python_version < "3.7"
Requires-Dist: dataclasses; python_version < "3.7"
Requires-Dist: six
Requires-Dist: tensorflow (==1.14.0); extra == "tensorflow" or extra == "all"
Requires-Dist: torch (==1.3.0); extra == "pytorch" or extra == "all"
Requires-Dist: torchvision (==0.4.1); extra == "pytorch" or extra == "all"
Requires-Dist: typing-extensions
Requires-Dist: typing; python_version < "3.7"
Project-URL: Repository, https://github.com/uchuhimo/nnql
Description-Content-Type: text/markdown

## Create a virtual environment

```bash
conda env create -f environment.yml
source activate nnql
```

## Install dependencies

There are two options:

- Use pip:
    ```bash
    pip install -e ".[all]"
    ```
- Use poetry:
    ```bash
    poetry install -E all
    ```

## Install git pre-commit hooks

```bash
pre-commit install
```

