-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 959 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
#!/usr/bin/env python3
from setuptools import setup
setup(name='tap-harvest-forecast',
version="0.0.1",
description='Singer.io tap for extracting data from the Harvest Forecast api',
author='Robert Benjamin',
url='https://github.com/assemble-inc/tap-harvest-forecast',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_harvest_forecast'],
install_requires=[
'singer-python==5.1.5',
'requests==2.19.1',
'backoff==1.3.2'
],
entry_points='''
[console_scripts]
tap-harvest-forecast=tap_harvest_forecast:main
''',
packages=['tap_harvest_forecast'],
package_data = {
'tap_harvest_forecast/schemas': [
"assignments.json",
"clients.json",
"milestones.json",
"people.json",
"projects.json"
],
},
include_package_data=True
)