-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
50 lines (42 loc) · 1023 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
49
50
[project]
name = "amplitude-data-wrapper"
version = "0.5.2"
description = "python wrapper for using the amplitude analytics and taxonomy APIs"
authors = [
{name = "Tobias McVey", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.10"
keywords = ["amplitude"]
license = {file = "LICENSE"}
dependencies = [
"requests",
"tqdm"
]
[project.optional-dependencies]
dev = [
"ipykernel",
"python-dotenv",
"black",
"twine",
"keyring",
"pip-tools",
"mypy",
"isort"
]
[project.urls]
"Homepage" = "https://github.com/navikt/amplitude-data-wrapper"
[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/taskanalytics_data_wrapper"]
sections=["FUTURE","STDLIB","THIRDPARTY","FIRSTPARTY","LOCALFOLDER"]