-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
42 lines (35 loc) · 1.12 KB
/
pyproject.toml
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
[tool.poetry]
name = "cloudcheck"
version = "6.0.0.0"
description = "Check whether an IP address belongs to a cloud provider"
authors = ["TheTechromancer"]
license = "GPL-3.0"
readme = "README.md"
include = ["cloud_providers.json"]
repository = "https://github.com/blacklanternsecurity/cloudcheck"
homepage = "https://github.com/blacklanternsecurity/cloudcheck"
[tool.poetry.urls]
"Discord" = "https://discord.com/invite/PZqkgxu5SA"
"PyPi" = "https://pypi.org/project/cloudcheck/"
[tool.poetry.scripts]
cloudcheck = 'cloudcheck.cloudcheck:main'
[tool.ruff]
line-length = 119
lint.ignore = ["E402", "E721", "E741", "F401", "F403", "F405", "E713"]
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^2.4.2"
httpx = ">=0.26,<0.29"
regex = "^2024.4.16"
radixtarget = "^3.0.13"
[tool.poetry.group.dev.dependencies]
pytest-asyncio = ">=0.21.1,<0.26.0"
pytest = "^8.1.1"
ruff = ">=0.8.1,<0.10.0"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
metadata = false
format-jinja = 'v7.0.{{ distance }}'