-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 981 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 981 Bytes
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
#!/usr/bin/env python3
from setuptools import setup
setup(name='tap-harvest-forecast',
version="1.1.4",
description='Singer.io tap for extracting data from the Harvest Forecast api',
author='Robert Benjamin',
url='https://github.com/singer-io/tap-harvest-forecast',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_harvest_forecast'],
install_requires=[
'singer-python==5.1.5',
'requests==2.32.0',
'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",
"roles.json"
],
},
include_package_data=True
)