Metadata-Version: 2.1
Name: bitgrit-cloud
Version: 0.0.3a0
Summary: Library to interact with our cloud service
Home-page: https://github.com/bitgrit-official/bitgrit-cloud
Author: bitgrit inc
Author-email: develop@bitgrit.net
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: hvac (==0.9.2)
Requires-Dist: filetype (==1.0.5)
Requires-Dist: pytest (==4.5.0)
Requires-Dist: protobuf (==3.7.1)
Requires-Dist: pytest-asyncio (==0.10.0)
Requires-Dist: google-cloud-storage (==1.15.0)
Requires-Dist: google-api-python-client (==1.7.9)
Requires-Dist: oauth2client (==4.1.3)

# bitgrit-cloud
Library to interact with our cloud service(GCP)

> Note: look inside `./dist/` folder to see the latest build `.whl` file.

# How to setup the Library:
### Install Dependencies/Packages:

### Run this command:
```bash
pip install -r requirements.txt
```

### Import the Library:
```python
from dsn.bitgrit.gcp.dataset_api import DatasetAPI
```

### To checkout documentation:
```bash
pydoc dataset
```

### To set the environment variable
```bash
export VAULT_TOKEN=<vault-token>
export VAULT_URL=<vault-url>
```

### To run the test
```bash
python -m unittest
```
### To package the library
```bash
python -m pip install --user --upgrade setuptools wheel
python setup.py sdist bdist_wheel
```

