forked from singer-io/tap-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 820 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="tap-github",
version="3.0.0",
description="Singer.io tap for extracting data from the GitHub API",
author="Stitch",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_github"],
install_requires=[
"singer-python==5.12.1",
"requests==2.31.0",
"backoff==1.8.0",
"PyJWT==2.9.0",
"cryptography==43.0.3",
],
extras_require={"dev": ["pylint==2.6.2", "ipdb", "nose", "requests-mock==1.9.3"]},
entry_points="""
[console_scripts]
tap-github=tap_github:main
""",
packages=["tap_github"],
package_data={"tap_github": ["tap_github/schemas/*.json"]},
include_package_data=True,
)