-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.07 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
[tool.poetry]
name = "common-osint-model"
version = "0.6.0"
description = "Converting data from services like BinaryEdge, Censys and Shodan to a common data model."
authors = ["3c7 <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/3c7/common-osint-model"
repository = "https://github.com/3c7/common-osint-model"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.8"
DateTime = "^4.3"
mmh3 = "^3.0.0"
cryptography = "^43.0.1"
pydantic = "^2.7.4"
hhhash = "^0.3"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
bump-pydantic = "^0.8.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
convshodan = "common_osint_model.cli:convshodan"
convcensys = "common_osint_model.cli:convcensys"
convcensyscert = "common_osint_model.cli:convcensyscert"
convcensys2 = "common_osint_model.cli:convcensys2"
convcert = "common_osint_model.cli:convcert"