-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.64 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (54 loc) · 1.64 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
[tool.poetry]
name = "tap-wordpress-org"
version = "0.1.0"
description = "Singer tap for WordPress.org, built with the Meltano SDK for Singer Taps."
authors = ["Automattic Inc. <opensource@automattic.com>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/Automattic/tap-wordpress-org"
repository = "https://github.com/Automattic/tap-wordpress-org"
documentation = "https://github.com/Automattic/tap-wordpress-org#readme"
keywords = ["meltano", "singer", "tap", "wordpress", "api"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
packages = [{include = "tap_wordpress_org"}]
[tool.poetry.dependencies]
python = ">=3.9"
singer-sdk = "~=0.47.0"
requests = "~=2.31"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
black = "^24.0.0"
flake8 = "^7.0.0"
isort = "^5.13.0"
pre-commit = "^3.6.0"
tox = "^4.11.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
tap-wordpress-org = "tap_wordpress_org.tap:TapWordPressOrg.cli"
[tool.black]
line-length = 88
target-version = ["py39"]
include = '\.pyi?$'
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true