Skip to content

Commit

Permalink
Version 0.1.0:
Browse files Browse the repository at this point in the history
- Refactor of project structure
- Add support for encoding/decoding messages
- Add support for some recent API changes
- Add better documentation, hosted doc website
  • Loading branch information
bczsalba committed Jan 30, 2022
1 parent 427d556 commit 30314a0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pylint
pip install .
pip install requests
- name: Analysing the code with pylint
run: |
pylint --fail-under 9.9 -d fixme $(git ls-files '*.py' | grep '^teahaz/')
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
from setuptools import setup, find_packages
from teahaz import __version__

setup(
name="teahaz.py",
version="0.0.4",
version=__version__,
packages=["teahaz"],
license="MIT",
description="The official API wrapper for the teahaz server",
long_description="TBA",
description="The official Python API wrapper for the Teaház protocol.",
long_description="Not yet available.",
install_requires=["requests", "cryptography"],
url="https://github.com/bczsalba/teahaz.py",
author="BcZsalba",
Expand Down
2 changes: 2 additions & 0 deletions teahaz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@
from .types import *
from .client import *
from .dataclasses import *

__version__ = "0.1.0"

0 comments on commit 30314a0

Please sign in to comment.