Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix pip install #3

Merged
merged 1 commit into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading