-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (54 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
66 lines (54 loc) · 1.49 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
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "tap-pokemon"
version = "0.0.1"
description = "`tap-pokemon` is a Singer tap for Pokemon, built with the Meltano SDK for Singer Taps."
authors = [{ name = "Edgar Ramírez-Mondragón", email = "edgarrm358@gmail.com" }]
requires-python = ">=3.10"
readme = "README.md"
license = "Apache-2.0"
keywords = [
"ELT",
"singer.io",
"Pokemon",
]
dependencies = [
"singer-sdk~=0.54.0a4",
"requests-cache~=1.3.0; python_version < '4'",
]
[project.urls]
Homepage = "https://github.com/reservoir-data/tap-pokemon"
Repository = "https://github.com/reservoir-data/tap-pokemon"
Documentation = "https://github.com/reservoir-data/tap-pokemon#readme"
[project.scripts]
tap-pokemon = "tap_pokemon.tap:TapPokemon.cli"
[dependency-groups]
dev = ["pytest~=9.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = "-vvv"
[tool.mypy]
warn_unused_configs = true
[tool.ruff]
line-length = 88
target-version = "py39"
[tool.ruff.lint]
ignore = [
"ANN101", # missing-type-self
"DJ", # flake8-django
"PD", # pandas-vet
"COM812", # missing-trailing-comma
"ISC001", # single-line-implicit-string-concatenation
]
select = ["ALL"]
[tool.ruff.lint.flake8-annotations]
allow-star-arg-any = true
[tool.ruff.lint.isort]
known-first-party = ["tap_neon"]
required-imports = ["from __future__ import annotations"]
[tool.ruff.lint.per-file-ignores]
"noxfile.py" = ["ANN"]
"tests/*" = ["ANN"]
[tool.ruff.lint.pydocstyle]
convention = "google"