-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 786 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 786 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
37
38
39
[project]
name = "pykobo"
dynamic = ["version"]
description = "A Python module to fetch data from the Kobo API"
authors = [{ name = "pvernier", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pandas>=2.0",
"requests>=2.28",
]
[project.urls]
Repository = "https://github.com/pvernier/pykobo"
[dependency-groups]
dev = [
"pytest>=8.0",
"flake8>=7.0",
"black>=24.0",
"isort>=5.13",
"safety>=3.0",
"bandit>=1.7",
"pre-commit>=4.0",
"pytest-cov>=5.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "pykobo/__version__.py"
[tool.hatch.build.targets.wheel]
packages = ["pykobo"]
[tool.black]
target-version = ["py310", "py311", "py312"]