Skip to content

Commit 8a99825

Browse files
1 parent 940c0b7 commit 8a99825

File tree

5 files changed

+415
-49
lines changed

5 files changed

+415
-49
lines changed

MANIFEST.in

Lines changed: 0 additions & 2 deletions
This file was deleted.

pyproject.toml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
[project]
2+
name = "tap-gitlab"
3+
version = "0.10.0"
4+
description = "Singer.io tap for extracting data from the GitLab API"
5+
authors = [
6+
{ name = "Meltano Team && Stitch" },
7+
]
8+
readme = "README.md"
9+
url = "https://singer.io"
10+
classifiers = [
11+
"Programming Language :: Python :: 3 :: Only",
12+
]
13+
license = "AGPL-3.0"
14+
license-files = [
15+
"LICENSE",
16+
]
17+
dependencies = [
18+
"singer-python==6.1.0",
19+
"requests==2.32.3",
20+
"strict-rfc3339==0.7",
21+
"backoff==2.2.1",
22+
]
23+
requires-python = ">=3.8"
24+
25+
[project.scripts]
26+
tap-gitlab = "tap_gitlab:main"
27+
28+
[build-system]
29+
build-backend = "hatchling.build"
30+
requires = [
31+
"hatchling==1.27",
32+
]
33+
34+
[tool.uv]
35+
build-constraint-dependencies = ["setuptools<78"]

setup.cfg

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)