-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (39 loc) · 932 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
48
[project]
name = "innholdsoversikt"
version = "0.1.0"
description = "cronjob for å samle oversikt over innhold på nav.no"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
dependencies = [
"requests",
"pandas",
"tqdm",
"google-cloud-bigquery",
"google-cloud-storage",
"python-dotenv"
]
[project.optional-dependencies]
dev = [
"ipykernel",
"black",
"openpyxl",
"mypy",
"isort"
]
[project.urls]
"Homepage" = "https://github.com/navikt/innholdsoversikt"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests", "testing"]
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.mypy]
ignore_missing_imports = true
[tool.isort]
profile = "black"
src_paths=["src/innholdsoversikt"]
sections=["FUTURE","STDLIB","THIRDPARTY","FIRSTPARTY","LOCALFOLDER"]