-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from tobiweisss/fix/tweiss/installing-via-pypi…
…-does-not-work [BUG FIX] Installing via PyPI is not working
- Loading branch information
Showing
6 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|
@@ -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 | ||
|