-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathsetup.py
39 lines (36 loc) · 1.41 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
37
38
39
# setup.py
import os
from setuptools import setup, find_packages
root_dir = os.path.abspath(os.path.dirname(__file__))
long_description = "Linkook is an OSINT tool for discovering linked/connected social accounts and associated emails across multiple platforms using a single username. It also supports exporting the gathered relationships in a Neo4j-friendly format for visual analysis." # TODO Fix it
readme_path = os.path.join(root_dir, "README.md")
if os.path.isfile(readme_path):
with open(readme_path, "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="linkook",
version="1.1.2",
author="Jack Ju1y",
description="A tool for scanning and enumerating linked social accounts.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/JackJuly/linkook",
packages=find_packages(),
include_package_data=True,
package_data={
"linkook.provider": ["provider.json"],
},
python_requires=">=3.7",
install_requires=["requests>=2", "colorama>=0.4.6"],
entry_points={
"console_scripts": [
"linkook=linkook.linkook:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)