|
1 | 1 | import setuptools
|
2 | 2 | from setuptools import setup
|
3 |
| - |
4 | 3 | from os import path
|
| 4 | + |
| 5 | + |
5 | 6 | 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: |
7 | 8 | long_description = f.read()
|
8 | 9 |
|
| 10 | +# package setup |
9 | 11 | setup(
|
10 | 12 | name="masto",
|
11 |
| - version="2.0.5", |
| 13 | + version="2.0.6", |
12 | 14 | author="OSINT_Tactical (AKA C3n7ral051nt4g3ncy)",
|
13 | 15 |
|
14 |
| - description="Masto OSINT Tool Python package for Mastodon social OSINT investigations.", |
| 16 | + description="Masto OSINT Tool Python package for Mastodon user investigations.", |
15 | 17 | long_description=long_description,
|
16 |
| - long_description_content_type='text/markdown', |
| 18 | + long_description_content_type="text/markdown", |
17 | 19 | url="https://github.com/C3n7ral051nt4g3ncy/Masto",
|
18 | 20 | packages=setuptools.find_packages(),
|
19 | 21 | classifiers=[
|
|
22 | 24 | "Operating System :: OS Independent",
|
23 | 25 | ],
|
24 | 26 | install_requires=[
|
25 |
| - "requests", |
26 |
| - "beautifulsoup4", |
| 27 | + "bs4", |
27 | 28 | "tqdm",
|
| 29 | + "urllib3", |
| 30 | + "argparse", |
28 | 31 | "w3lib",
|
| 32 | + "aiohttp", |
| 33 | + "asyncio", |
| 34 | + "requests", |
29 | 35 | ],
|
30 |
| - python_requires='>=3.6', |
| 36 | + python_requires=">=3.6", |
31 | 37 | entry_points={
|
32 |
| - 'console_scripts': [ |
33 |
| - 'masto=masto.masto:main', |
| 38 | + "console_scripts": [ |
| 39 | + "masto=masto.masto:main", # running masto from CLI |
34 | 40 | ],
|
35 | 41 | },
|
36 | 42 | )
|
0 commit comments