forked from ipinfo/python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 743 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 743 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
34
35
36
[project]
name = "ipinfo"
dynamic = ["version"]
description = "Official Python library for IPInfo"
readme = "README.md"
authors = [
{ name = "IPinfo", email = "support@ipinfo.io" }
]
license = { text = "Apache License 2.0" }
requires-python = ">=3.10"
dependencies = [
"requests>=2.18.4",
"cachetools==4.2.0",
"aiohttp>=3.12.14,<=4",
]
[project.urls]
Homepage = "https://github.com/ipinfo/python"
Documentation = "https://ipinfo.io/developers"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "ipinfo/version.py"
[tool.hatch.build.targets.wheel]
packages = ["ipinfo"]
[dependency-groups]
dev = [
"pytest==8.4.1",
"pytest-asyncio==1.1.0",
"black==22.6.0",
]