-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
36 lines (34 loc) · 1.06 KB
/
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
31
32
33
34
35
36
import setuptools
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="masto",
version="2.0.5",
author="OSINT_Tactical (AKA C3n7ral051nt4g3ncy)",
author_email="C3n7ral051nt4g3ncy@tactical-osint-academy.com",
description="Masto OSINT Tool Python package for Mastodon social OSINT investigations.",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/C3n7ral051nt4g3ncy/Masto",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"requests",
"beautifulsoup4",
"tqdm",
"w3lib",
],
python_requires='>=3.6',
entry_points={
'console_scripts': [
'masto=masto.masto:main',
],
},
)