|
1 | 1 | [tool.poetry]
|
2 |
| -name = "tap-postgres" |
3 |
| -version = "0.0.1" |
4 |
| -description = "`tap-postgres` is a Singer tap for Postgres, built with the Meltano SDK for Singer Taps." |
5 |
| -authors = ["AutoIDM"] |
| 2 | +name = "meltanolabs-tap-postgres" |
| 3 | +version = "0.0.0" |
| 4 | +description = "`tap-postgres` is a Singer tap for Postgres, built with the Meltano SDK for Singer Targets." |
| 5 | +authors = ["Meltano Team and Contributors <hello@meltano.com>"] |
| 6 | +maintainers = ["Meltano Team and Contributors <hello@meltano.com>"] |
| 7 | +license = "MIT" |
| 8 | +readme = "README.md" |
| 9 | +homepage = "https://meltano.com" |
| 10 | +repository = "https://github.com/meltanolabs/tap-postgres" |
6 | 11 | keywords = [
|
7 |
| - "ELT", |
8 | 12 | "Postgres",
|
| 13 | + "Singer", |
| 14 | + "ELT", |
| 15 | + "Meltano", |
| 16 | + "Meltano SDK", |
| 17 | +] |
| 18 | +classifiers = [ |
| 19 | + "Intended Audience :: Developers", |
| 20 | + "License :: OSI Approved :: MIT License", |
| 21 | + "Operating System :: OS Independent", |
| 22 | + "Programming Language :: Python :: 3.7", |
| 23 | + "Programming Language :: Python :: 3.8", |
| 24 | + "Programming Language :: Python :: 3.9", |
| 25 | + "Programming Language :: Python :: 3.10", |
| 26 | + "Programming Language :: Python :: 3.11", |
| 27 | + "Programming Language :: Python :: Implementation :: CPython", |
9 | 28 | ]
|
10 |
| -license = "Apache 2.0" |
| 29 | +packages = [ |
| 30 | + { include = "tap_postgres" } |
| 31 | +] |
| 32 | + |
11 | 33 |
|
12 | 34 | [tool.poetry.dependencies]
|
13 | 35 | python = "<3.12,>=3.8.1"
|
@@ -44,8 +66,8 @@ module = [
|
44 | 66 | ]
|
45 | 67 |
|
46 | 68 | [build-system]
|
47 |
| -requires = ["poetry-core>=1.0.8"] |
48 |
| -build-backend = "poetry.core.masonry.api" |
| 69 | +requires = ["poetry-core>=1.0.8", "poetry-dynamic-versioning"] |
| 70 | +build-backend = "poetry_dynamic_versioning.backend" |
49 | 71 |
|
50 | 72 | [tool.poetry.scripts]
|
51 | 73 | # CLI declaration
|
|
0 commit comments