Skip to content

Commit

Permalink
Merge pull request #13 from tobiweisss/fix/tweiss/installing-via-pypi…
Browse files Browse the repository at this point in the history
…-does-not-work

[BUG FIX] Installing via PyPI is not working
  • Loading branch information
tobiil authored Dec 13, 2023
2 parents 0606071 + 92f8fb7 commit ed33607
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ TODO add quick start / API documentation / how to install / ...
- 0.1.0: setup package. Bot can send messages and images
- 0.2.0: Bot can receive messages
- 0.3.0: Add method export_config to save the current token and chat_id to a file, add classmethod from_config to create a bot from the config file, add classmethod from_env to create a bot from the environment variables TELEGRAM_BOT_TOKEN and TELEGRAM_CHAT_ID. Methods import_chat_id and export_chat_id are deprecated and will be removed in version 1.0.0
- 0.3.1: Adapting package structure

## Authors
- Antonio Vidos
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="LeBotTel", # This is the name of the package
version="0.3.0", # The initial release version
version="0.3.1", # The initial release version
author="Antonio Vidos, Tobias Lettner, Tobias Weiß, Uwe Kölbel",
author_email="[email protected]",
description="A simple Telegram Bot",
Expand All @@ -19,7 +19,6 @@
], # Information to filter the project on PyPi website
python_requires=">=3.10", # Minimum version requirement of the package
py_modules=["LeBotTel"], # Name of the python package
package_dir={"": "LeBotTel"}, # Directory of the source code of the package
install_requires=[
"requests~=2.31.0", # Add any additional packages here
], # Install other dependencies if any
Expand Down

0 comments on commit ed33607

Please sign in to comment.