-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (48 loc) · 1.31 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (48 loc) · 1.31 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cloud-detect"
version = "0.0.15"
description = "Module that determines a host's cloud provider"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE.md"]
authors = [
{ name = "Daniel Gonzalez Lopes", email = "danielgonzalezlopes@gmail.com" },
]
requires-python = ">=3.9"
dependencies = [
"aiohttp>=3.13",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: System :: Networking",
]
[project.urls]
Homepage = "https://github.com/dgzlopes/cloud-detect"
Repository = "https://github.com/dgzlopes/cloud-detect"
[project.optional-dependencies]
dev = [
"pytest>=8.4",
"pytest-asyncio>=1.2",
"aresponses>=3.0",
"ruff>=0.15",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_default_fixture_loop_scope = "function"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "Q", "T10"]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "single"
[tool.ruff.lint.isort]
force-single-line = true