Metadata-Version: 2.4
Name: edbb
Version: 0.2.1
Summary: EDBB Python Package
Author: yaakiyu
Author-email: yaakiyu.yaakiyu@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: discord.py
Requires-Dist: python-dotenv
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# edbb-python-library
EDBBのPythonライブラリ実装。

## 概要
- dependenciesにdiscord.pyやdotenvを含むことでpip installの手間を軽減する
- バージョンチェック (古いコードだったりすると動作しない旨をエラー表示する)
- エラー時にEDBBに関する情報と公式サポートへの案内を表示

## How to build and publish?
(参考： https://qiita.com/c60evaporator/items/e1ecccab07a607487dcf )
```sh
# ビルド
python setup.py sdist
python setup.py bdist_wheel

# テスト環境
twine upload --repository testpypi dist/*
# 動作確認用
pip install --index-url https://test.pypi.org/simple/ edbb

# 本番環境へのアップロード
twine upload --repository pypi dist/*
```
