Skip to content

Commit

Permalink
Light restructuring of the project.
Browse files Browse the repository at this point in the history
  • Loading branch information
franckferman committed Oct 11, 2023
1 parent 17a7d9b commit 434fbae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM debian:bullseye-slim

LABEL maintainer="Franck FERMAN <[email protected]>" \
description="MetaDetective: A Python 3 tool designed for advanced metadata analysis pivotal in OSINT and pentesting." \
metadetective_version="1.0.2" \
metadetective_version="1.0.3" \
docker_image_version="1.0.0"

RUN apt-get update && apt-get install -y \
Expand Down
4 changes: 2 additions & 2 deletions MetaDetective.py → src/MetaDetective.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Created By : Franck FERMAN @franckferman
Created Date: 27/08/2023
Version : 1.0.2 (03/10/2023)
Version : 1.0.3 (11/10/2023)
"""

import argparse
Expand Down Expand Up @@ -191,7 +191,7 @@ def get_address_from_coords(lat: str, lon: str) -> str:
"""
try:
conn = http.client.HTTPSConnection("nominatim.openstreetmap.org")
headers = {'User-Agent': 'MetaDetective/1.0.2'}
headers = {'User-Agent': 'MetaDetective/1.0.3'}
conn.request("GET", f"/reverse?format=jsonv2&lat={lat}&lon={lon}", headers=headers)

res = conn.getresponse()
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml → src/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "MetaDetective"
version = "1.0.2"
version = "1.0.3"
description = "Unleash Metadata Intelligence with MetaDetective. Your Assistant Beyond Metagoofil."
authors = [{ name = "Franck Ferman", email = "[email protected]" }]
license = { file = "LICENSE" }
Expand All @@ -17,7 +17,7 @@ classifiers = [
]
readme = "README.md"
keywords = ["metadata", "osint", "cyber-security"]
requires-python = ">=3.9"
requires-python = ">=3.9.0"

[project.urls]
home = "https://github.com/franckferman/MetaDetective"
Expand Down

0 comments on commit 434fbae

Please sign in to comment.