Renamed to davtelepot

This commit is contained in:
Davte 2018-10-24 17:09:55 +02:00
parent fe1cd1b786
commit 9772bfc0b1
4 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
# datelepot
# davtelepot
This project conveniently subclasses third party telepot.aio.Bot, providing many interesting features.
Please note that you need Python3.5+ to run async code
@ -22,7 +22,7 @@ my_other_token = 'token_of_bot2'
## Usage
```
from datelepot import Bot
from davtelepot import Bot
from data.passwords import my_token, my_other_token
my_bot = Bot(token=my_token, db_name='my_db')

View File

@ -5,4 +5,4 @@ __version__ = "1.1.0"
__maintainer__ = "Davide Testa"
__contact__ = "t.me/davte"
from datelepot.custombot import Bot
from davtelepot.custombot import Bot

View File

@ -30,14 +30,14 @@ with open("README.md", "r") as readme_file:
long_description = readme_file.read()
setuptools.setup(
name='datelepot',
version=find_information("version", "datelepot", "__init__.py"),
author=find_information("author", "datelepot", "__init__.py"),
name='davtelepot',
version=find_information("version", "davtelepot", "__init__.py"),
author=find_information("author", "davtelepot", "__init__.py"),
description="telepot.aio.Bot convenient subclass, featuring dataset-powered SQLite.",
license=find_information("license", "datelepot", "__init__.py"),
license=find_information("license", "davtelepot", "__init__.py"),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://bitbucket.org/davte/datelepot",
url="https://bitbucket.org/davte/davtelepot",
packages=setuptools.find_packages(),
platforms=['any'],
install_requires=[