-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 983 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (30 loc) · 983 Bytes
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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "hackmyip"
version = "1.0.0"
description = "Free IP geolocation API for Python — no API key, no signup. VPN/proxy detection, DNS, WHOIS, blacklist and breach checks."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [{ name = "HackMyIP" }]
keywords = [
"ip-geolocation", "geolocation-api", "ip-api", "ip-lookup",
"vpn-detection", "proxy-detection", "whois", "dns", "blacklist", "whatismyip",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Internet",
"Topic :: Security",
]
dependencies = []
[project.urls]
Homepage = "https://hackmyip.com"
Documentation = "https://hackmyip.com/api"
Source = "https://github.com/Hackmyip/hackmyip-python"
[tool.setuptools.packages.find]
include = ["hackmyip*"]