-
Notifications
You must be signed in to change notification settings - Fork 76
/
pyproject.toml
49 lines (42 loc) · 1.4 KB
/
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
[tool.poetry]
name = "singer-target-postgres"
version = "0.2.4"
authors = ["datamill"]
description = "Singer.io target for loading data into postgres"
readme = "README.md"
homepage = "https://github.com/datamill-co/target-postgres"
repository = "https://github.com/datamill-co/target-postgres"
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
license = "MIT"
packages = [{include = "target_postgres"}]
[project.urls]
"Homepage" = "https://github.com/datamill-co/target-postgres"
"Bug Tracker" = "https://github.com/datamill-co/target-postgres/issues"
[tool.poetry.dependencies]
python = ">=3.7"
arrow = "^1.2.3"
psycopg2-binary = "^2.9.5"
singer-python = "^5.9.0"
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
chance = "^0.110"
Faker = "^15.1.3"
pytest = "^7.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
target-postgres = 'target_postgres:cli'