This repository has been archived by the owner on May 28, 2024. It is now read-only.
forked from singer-io/tap-harvest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (50 loc) · 1.58 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
46
47
48
49
50
51
52
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-harvest',
version="2.0.8",
description='Singer.io tap for extracting data from the Harvest api',
author='Facet Interactive',
url='http://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_harvest'],
install_requires=[
'singer-python==5.12.1',
'requests==2.20.0',
'pendulum==1.2.0',
'backoff==1.8.0'
],
entry_points='''
[console_scripts]
tap-harvest=tap_harvest:main
''',
packages=['tap_harvest'],
package_data = {
'tap_harvest/schemas': [
"clients.json",
"contacts.json",
"estimate_item_categories.json",
"estimate_line_items.json",
"estimate_messages.json",
"estimates.json",
"expense_categories.json",
"expenses.json",
"external_reference.json",
"invoice_item_categories.json",
"invoice_messages.json",
"invoice_payments.json",
"invoices.json",
"project_tasks.json",
"project_users.json",
"projects.json",
"roles.json",
"tasks.json",
"time_entries.json",
"time_entry_external_reference.json",
"user_project_tasks.json",
"user_projects.json",
"user_roles.json",
"users.json",
],
},
include_package_data=True,
)