forked from aranke-archive/tap-anvil
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (31 loc) · 964 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
[tool.poetry]
name = "tap-anvil"
version = "0.1.8"
description = "A Singer tap for Anvil, a tool for programmatically filling out PDF forms."
authors = ["Kshitij Aranke <[email protected]>"]
keywords = ["singer", "tap", "anvil"]
license = "MIT"
homepage = "https://github.com/k-aranke/tap-anvil"
repository = "https://github.com/k-aranke/tap-anvil"
include = ["queries", "schemas"]
[tool.poetry.urls]
Changelog = "https://github.com/k-aranke/tap-anvil/releases"
[tool.poetry.dependencies]
python = "<3.11,>=3.7.1"
singer-sdk = "0.31.1"
[tool.poetry.dev-dependencies]
pytest = "^7.1"
pytest-cov = "^3.0.0"
python-dotenv = "^0.20"
mypy = "^0.971"
types-requests = "^2.28.9"
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.5"
version_files = ["pyproject.toml:version"]
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
tap-anvil = 'tap_anvil.tap:TapAnvil.cli'