-
-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (57 loc) · 2.01 KB
/
setup.py
File metadata and controls
59 lines (57 loc) · 2.01 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import setup
import os
try:
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
except FileNotFoundError:
long_description = "FindME - Hunt down social media accounts by username across 400+ social networks"
setup(
name="findme-osint",
version="1.0.7",
py_modules=["findme"],
include_package_data=True,
data_files=[
('', ['data.json', 'data.schema.json']),
],
entry_points={
"console_scripts": [
"findme=findme:main",
],
},
install_requires=[
"requests>=2.25.1",
"jsonschema>=4.0.0",
"termcolor>=1.1.0",
],
author="Sakil Hasan Saikat (0xSaikat)",
author_email="saikat@hackbit.org",
description="Hunt down social media accounts by username across 400+ social networks",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/0xSaikat/findme",
project_urls={
"Bug Tracker": "https://github.com/0xSaikat/findme/issues",
"Source Code": "https://github.com/0xSaikat/findme",
"Homepage": "https://saikat.hackbit.org",
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Security",
"Topic :: Internet",
"Environment :: Console",
],
keywords="osint cybersecurity username-search reconnaissance social-media hackbit findme",
python_requires='>=3.6',
)