-
Notifications
You must be signed in to change notification settings - Fork 138
/
setup.py
30 lines (29 loc) · 858 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup, find_packages
setup(
name="telepathy",
version='2.3.4',
author='Jordan Wildon',
author_email='[email protected]',
packages=['telepathy'],
package_dir={'':'src'},
url='https://pypi.python.org/pypi/telepathy/',
license='LICENSE.txt',
description='An OSINT toolkit for investigating Telegram chats.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=[
'click ~= 7.1.2',
'telethon == 1.36.0',
'pandas',
'colorama ~= 0.4.3',
'alive_progress == 2.4.1',
'beautifulsoup4 == 4.11.1',
'requests ~= 2.28.1',
'googletrans == 4.0.0rc1',
'pprintpp == 0.4.0',
],
entry_points='''
[console_scripts]
telepathy=telepathy.telepathy:cli
''',
)