-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (38 loc) · 909 Bytes
/
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
43
44
45
46
47
[project]
name = "americansouth"
version = "0.2.3"
description = "Monitor internet data usage to avoid overage charges"
authors = [
{ name = "Taylor Monacelli", email = "[email protected]" }
]
dependencies = [
"tzdata>=2024.1"
]
readme = "README.md"
requires-python = ">= 3.9"
[project.urls]
Homepage = "https://github.com/gkwa/americansouth"
Repository = "https://github.com/gkwa/americansouth"
[project.scripts]
americansouth = "americansouth:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/americansouth"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff.lint]
extend-select = ["I"]
[dependency-groups]
dev = [
"pytest>=8.3.3",
]
[tool.hatch.envs.test]
dependencies = [
"pytest>=7.0.0",
"pytest-cov>=4.1.0",
]