-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
34 lines (32 loc) · 902 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-gitlab',
version='0.5.1',
description='Singer.io tap for extracting data from the GitLab API',
author='Stitch',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_gitlab'],
install_requires=[
'singer-python==5.0.4',
'requests==2.20.0',
'strict-rfc3339==0.7',
'backoff==1.3.2'
],
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",
],
},
include_package_data=True,
)