Metadata-Version: 2.2
Name: synapse-sdk
Version: 1.0.0a26
Summary: synapse sdk
Author-email: datamaker <developer@datamaker.io>
License: MIT
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: boto3
Requires-Dist: click
Requires-Dist: cookiecutter
Requires-Dist: requests
Requires-Dist: tqdm
Requires-Dist: python-dotenv
Requires-Dist: pyyaml
Requires-Dist: pydantic
Requires-Dist: pyjwt
Provides-Extra: all
Requires-Dist: ray[all]; extra == "all"

This is the SDK to develop synapse plugins


## Internationalization

### Find Messages
```bash
 $ find . -name "*.py" | xargs xgettext -o messages.pot
```

### Make Messages
```bash
 $ msginit -l ko -i messages.pot -o locale/ko/LC_MESSAGES/messages.po
 $ msginit -l en -i messages.pot -o locale/en/LC_MESSAGES/messages.po
```

### Compile Messages

```bash
 $ msgfmt locale/ko/LC_MESSAGES/messages.po -o locale/ko/LC_MESSAGES/messages.mo
 $ msgfmt locale/en/LC_MESSAGES/messages.po -o locale/en/LC_MESSAGES/messages.mo
```
