-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.21 KB
/
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
37
38
39
40
41
42
43
44
45
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "dpulse"
version = "1.2.2"
description = "Convenient,fast and user-friendly collector of domain information from Open-Sources"
authors = ["OSINT-TECHNOLOGIES <osint.technologies@gmail.com>"]
readme = "README.md"
license = "MIT License"
homepage = "https://pypi.org/manage/projects/dpulse"
repository = "https://github.com/OSINT-TECHNOLOGIES/dpulse"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Natural Language :: English"
]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
Jinja2 = "^3.1.6"
beautifulsoup4 = "4.12.2"
requests = "2.32.3"
python-whois = "0.9.4"
colorama = "0.4.6"
pyfiglet = "1.0.2"
rich = "13.7.1"
MechanicalSoup = "1.3.0"
builtwith = "1.3.4"
dnspython = "2.6.1"
openpyxl = "3.1.2"
PyMuPDF = "1.24.7"
selenium = "4.28.1"
webdriver-manager = "4.0.2"
[tool.poetry.scripts]
dpulse = 'dpulse.dpulse:run'
[tool.poetry.group.dev.dependencies]
deptry = "^0.23.0"