-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (62 loc) · 1.7 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = 'ipregistry'
version = "5.0.1"
description = 'Official Python library for Ipregistry'
authors = [
{name = 'Ipregistry Team', email = 'support@ipregistry.co'},
{name = 'Laurent Pellegrino', email = 'laurent.pellegrino@ipregistry.co'}
]
license = 'Apache-2.0'
license-files = ['LICENSE.txt']
readme = 'README.md'
requires-python = '>=3.10'
classifiers = [
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
'Typing :: Typed'
]
keywords = [
'ipinfo',
'ipregistry',
'ip-address',
'ip-data',
'ip-geolocation',
'threat-detection',
'user-agent-parsing'
]
dependencies = [
'cachetools (>=7.1.4,<8.0.0)',
'pydantic (>=2.13.4,<3.0.0)',
'requests (>=2.34.2,<3.0.0)'
]
[project.optional-dependencies]
async = ['httpx (>=0.28.1,<0.29.0)']
[project.urls]
Homepage = 'https://ipregistry.co'
Repository = 'https://github.com/ipregistry/ipregistry-python'
[dependency-groups]
dev = [
'pytest>=9.1.1',
'requests-mock>=1.12.1,<2.0.0',
'ruff>=0.15.20,<0.16.0'
]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W"]
# The public API is intentionally re-exported with star imports.
ignore = ["F403", "F405"]
[tool.uv.build-backend]
module-root = ""
[build-system]
requires = ["uv_build>=0.11.0,<0.12.0"]
build-backend = "uv_build"