Skip to content

Commit 2d804af

Browse files
Update setup.py
1 parent 35aade7 commit 2d804af

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

setup.py

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
import setuptools
22
from setuptools import setup
3-
43
from os import path
4+
5+
56
this_directory = path.abspath(path.dirname(__file__))
6-
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
7+
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
78
long_description = f.read()
89

10+
# package setup
911
setup(
1012
name="masto",
11-
version="2.0.5",
13+
version="2.0.6",
1214
author="OSINT_Tactical (AKA C3n7ral051nt4g3ncy)",
1315
author_email="[email protected]",
14-
description="Masto OSINT Tool Python package for Mastodon social OSINT investigations.",
16+
description="Masto OSINT Tool Python package for Mastodon user investigations.",
1517
long_description=long_description,
16-
long_description_content_type='text/markdown',
18+
long_description_content_type="text/markdown",
1719
url="https://github.com/C3n7ral051nt4g3ncy/Masto",
1820
packages=setuptools.find_packages(),
1921
classifiers=[
@@ -22,15 +24,19 @@
2224
"Operating System :: OS Independent",
2325
],
2426
install_requires=[
25-
"requests",
26-
"beautifulsoup4",
27+
"bs4",
2728
"tqdm",
29+
"urllib3",
30+
"argparse",
2831
"w3lib",
32+
"aiohttp",
33+
"asyncio",
34+
"requests",
2935
],
30-
python_requires='>=3.6',
36+
python_requires=">=3.6",
3137
entry_points={
32-
'console_scripts': [
33-
'masto=masto.masto:main',
38+
"console_scripts": [
39+
"masto=masto.masto:main", # running masto from CLI
3440
],
3541
},
3642
)

0 commit comments

Comments
 (0)