# Shlesha Environment Variables
# Copy this file to .env and populate with your actual values
# PyPI Publishing
# Get tokens from: https://pypi.org/manage/account/token/
# and https://test.pypi.org/manage/account/token/
TEST_PYPI_API_TOKEN=
PYPI_API_TOKEN=
# npm Publishing
# Get token from: https://www.npmjs.com/settings/YOUR_USERNAME/tokens
NPM_TOKEN=
# crates.io Publishing
# Get token from: https://crates.io/settings/tokens
CRATES_TOKEN=
# GitHub (for releases, usually automatic via Actions)
# Create at: https://github.com/settings/tokens
GITHUB_TOKEN=
# Code Coverage (optional)
# Get token from: https://codecov.io/
CODECOV_TOKEN=
# Development Settings (optional)
RUST_LOG=info
RUST_BACKTRACE=1
# Python Development (optional)
PYTHONPATH=./python
# WASM Development (optional)
WASM_BINDGEN_TEST_TIMEOUT=60