-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
24 additions
and
7 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,25 +1,37 @@ | ||
# pylint: disable=missing-docstring | ||
|
||
"""Setup script for telegram-messages-dump""" | ||
|
||
import os.path | ||
from setuptools import setup | ||
from telegram_messages_dump import __version__ | ||
|
||
# The directory containing this file | ||
HERE = os.path.abspath(os.path.dirname(__file__)) | ||
|
||
# The text of the README file | ||
with open(os.path.join(HERE, "README.md")) as fid: | ||
README = fid.read() | ||
|
||
setup( | ||
name='telegram-messages-dump', | ||
version=__version__, | ||
description='Telegram Messages Dump console util.', | ||
author='Kostya K', | ||
description='Telegram Messages Dump console utility.', | ||
long_description_content_type="text/markdown", | ||
long_description=README, | ||
author='Kostya Kravets', | ||
author_email='[email protected]', | ||
url='https://github.com/Kosat/telegram-messages-dump', | ||
download_url='https://github.com/Kosat/telegram-messages-dump/releases', | ||
install_requires=['telethon==1.6.2'], | ||
license="MIT", | ||
packages=['telegram_messages_dump', "telegram_messages_dump.exporters"], | ||
include_package_data=True, | ||
classifiers=[ | ||
'Environment :: Console', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: System Administrators', | ||
'License :: MIT', | ||
'Operating System :: MacOS', | ||
'Operating System :: Unix', | ||
'Operating System :: Windows', | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python", | ||
'Programming Language :: Python :: 3' | ||
], | ||
entry_points={ | ||
|