Skip to content

Commit

Permalink
fix pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
guangrei committed Feb 14, 2024
1 parent 59461b6 commit 28f51da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
5 changes: 0 additions & 5 deletions TelegramSDK/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# -*-coding:utf8;-*-
from .telegram import telegram
from .util import util

__author__ = "guangrei"
__email__ = "[email protected]"
__version__ = "v0.1.0"

7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,19 @@
import sys
from setuptools import setup
from os import path
import TelegramSDK as pkg


this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md")) as f:
long_description = f.read()
setup(
name="TelSDK",
version=pkg.__version__,
version="v0.1.1",
description="Synchronous Telegram bot SDK for python 2 & 3",
long_description=long_description,
long_description_content_type="text/markdown",
author=pkg.__author__,
author_email=pkg.__email__,
author="guangrei",
author_email="[email protected]",
url="https://github.com/cirebon-dev/TelegramSDK",
packages=["TelegramSDK"],
license="MIT",
Expand Down

0 comments on commit 28f51da

Please sign in to comment.