-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 1.26 KB
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
[project]
name = "ipmapper"
version = "1.2.0"
description = "Fast offline IP-to-country lookup using RIR data with country names and currency support"
readme = "README.md"
authors = [
{ name = "Anas Khan", email = "anxkhn28@gmail.com" }
]
requires-python = ">=3.11"
dependencies = [
"requests>=2.31.0",
"click>=8.1.0",
"tqdm>=4.65.0",
"mmdb_writer>=0.2.4",
"netaddr>=0.8.0",
]
license = { text = "MIT" }
keywords = ["ip", "geolocation", "country", "currency", "rir", "offline", "radix-tree"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
]
[project.urls]
Homepage = "https://github.com/anxkhn/ipmapper"
Repository = "https://github.com/anxkhn/ipmapper"
Issues = "https://github.com/anxkhn/ipmapper/issues"
[project.scripts]
ipmapper = "ipmapper:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"