Include email in package setup

This commit is contained in:
Davte 2018-10-31 18:53:36 +01:00
parent ef8418f219
commit 95e25549a0
2 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,7 @@ __author__ = "Davide Testa"
__email__ = "davte@libero.it" __email__ = "davte@libero.it"
__credits__ = "Marco Origlia" __credits__ = "Marco Origlia"
__license__ = "GNU General Public License v3.0" __license__ = "GNU General Public License v3.0"
__version__ = "1.2.3" __version__ = "1.2.4"
__maintainer__ = "Davide Testa" __maintainer__ = "Davide Testa"
__contact__ = "t.me/davte" __contact__ = "t.me/davte"

View File

@ -33,6 +33,7 @@ setuptools.setup(
name='davtelepot', name='davtelepot',
version=find_information("version", "davtelepot", "__init__.py"), version=find_information("version", "davtelepot", "__init__.py"),
author=find_information("author", "davtelepot", "__init__.py"), author=find_information("author", "davtelepot", "__init__.py"),
email=find_information("email", "davtelepot", "__init__.py"),
description="telepot.aio.Bot convenient subclass, featuring dataset-powered SQLite.", description="telepot.aio.Bot convenient subclass, featuring dataset-powered SQLite.",
license=find_information("license", "davtelepot", "__init__.py"), license=find_information("license", "davtelepot", "__init__.py"),
long_description=long_description, long_description=long_description,