forked from codyss/tap-greenhouse
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
25 lines (25 loc) · 827 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name="tap-greenhouse",
version="0.1.2",
description="Singer.io tap for extracting data",
author="Simon Data",
url="http://simondata.com",
classifiers=["Programming Language :: Python :: 3 :: Only"],
packages=find_packages(),
install_requires=[
"singer-python==5.2.0",
'requests==2.18.4',
"pendulum==1.2.0",
"tap-kit @ git+https://github.com/miroapp/tap-kit.git@758353629971b9b2a5fcc12c699383f856a094f8"
],
dependency_links=[
"https://github.com/miroapp/tap-kit/tarball/758353629971b9b2a5fcc12c699383f856a094f8#egg=tap-kit-0.1.1",
],
entry_points="""
[console_scripts]
tap-greenhouse=tap_greenhouse:main
""",
include_package_data=True,
)