forked from aN0n1m1z3/Profil3r
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (32 loc) · 886 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "profil3r"
version = "1.5.0"
description = "Find the profiles of a person on social networks, as well as their email addresses"
authors = ["Rog3rSm1th <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Rog3rSm1th/Profil3r"
repository = "https://github.com/Rog3rSm1th/Profil3r"
keywords = ["profil3r", "osint"]
classifiers = [
"Environment :: Console",
]
include = [
"LICENSE",
"profil3r/app/core/ressources/*",
"profil3r/config/config.json.template"
]
[tool.poetry.dependencies]
python = "^3.6"
pwnedpasswords = "^2.0.0"
requests = "^2.25.1"
Jinja2 = "^3.0.1"
argparse = "^1.4.0"
beautifulsoup4 = "^4.9.3"
PyInquirer = "1.0.3"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
profil3r = "profil3r.main:main"