Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jordanwildon
GitHub Repository: jordanwildon/Telepathy
Path: blob/main/setup.py
201 views
1
from setuptools import setup, find_packages
2
3
setup(
4
name="telepathy",
5
version='2.3.4',
6
author='Jordan Wildon',
7
author_email='[email protected]',
8
packages=['telepathy'],
9
package_dir={'':'src'},
10
url='https://pypi.python.org/pypi/telepathy/',
11
license='LICENSE.txt',
12
description='An OSINT toolkit for investigating Telegram chats.',
13
long_description=open('README.md').read(),
14
long_description_content_type='text/markdown',
15
install_requires=[
16
'click ~= 7.1.2',
17
'telethon == 1.36.0',
18
'pandas',
19
'colorama ~= 0.4.3',
20
'alive_progress == 2.4.1',
21
'beautifulsoup4 == 4.11.1',
22
'requests ~= 2.28.1',
23
'googletrans == 4.0.0rc1',
24
'pprintpp == 0.4.0',
25
],
26
entry_points='''
27
[console_scripts]
28
telepathy=telepathy.telepathy:cli
29
''',
30
)
31
32