-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
54 lines (50 loc) · 1.26 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
[project]
name = "foreninglet-data"
version = "0.5.2"
description = "A way to retrieve information about members from the ForeningLet API (www.foreninglet.dk) - ForeningLet is a member system for small (typically) voluntary organizations in Denmark"
authors = [
{name = "Carsten Skov", email = "carsten@simcax.dk"}
]
readme = "README.md"
requires-python = ">=3.11"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
dependencies = [
"dataclasses-json>=0.5.7,<0.7.0",
"requests>=2.31.0",
"pandas>=2.1.4",
"loguru>=0.7.2",
"pydantic>=2.6.4",
"retry>=0.9.2",
"dagger-io>=0.19.8",
]
[project.optional-dependencies]
dev = [
"black>=23.7.0",
"python-dotenv==1.2.1",
"dagger-io>=0.19.8",
"faker>=19.2,<41.0",
"typer>=0.9,<0.25",
"sphinx>=7.2.6",
"pytest-cov>=4.1,<8.0",
"pytest>=8.0.0",
"pytest-vcr>=1.0.2",
"matplotlib>=3.10.8",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["foreninglet_data*"]
[dependency-groups]
dev = [
"black>=25.12.0",
"faker>=24.14.1",
"matplotlib>=3.10.8",
"pytest>=9.0.2",
"pytest-cov>=5.0.0",
"pytest-vcr>=1.0.2",
"python-dotenv>=1.0.1",
"typer>=0.12.5",
]