-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
45 lines (43 loc) · 1.25 KB
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-gitlab',
version='0.9.15',
description='Singer.io tap for extracting data from the GitLab API',
author='Meltano Team && Stitch',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_gitlab'],
install_requires=[
'singer-python==6.0.1',
'requests==2.32.0',
'strict-rfc3339==0.7',
'backoff==2.2.1',
],
entry_points='''
[console_scripts]
tap-gitlab=tap_gitlab:main
''',
packages=['tap_gitlab'],
package_data = {
'tap_gitlab/schemas': [
"branches.json",
"commits.json",
"issues.json",
"milestones.json",
"projects.json",
"users.json",
"groups.json",
"merge_requests.json",
"project_members.json",
"group_members.json",
"project_labels.json",
"group_labels.json",
"tags.json",
"releases.json",
"vulnerabilities.json",
"project_variables.json",
"group_variables.json"
],
},
include_package_data=True,
)