-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
executable file
·39 lines (35 loc) · 1003 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
33
34
35
36
37
38
39
from setuptools import find_packages, setup
from os.path import abspath, dirname, join
requirements_file = "requirements.txt"
ROOT_DIR = abspath(dirname(__file__))
with open(join(ROOT_DIR, "README.md"), encoding="utf-8") as f:
readme = f.read()
setup(
name="tap-sailthru",
version="1.0.0",
description="Singer.io tap for the SailThru API",
long_description=readme,
long_description_content_type='text/markdown',
author="Stitch",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_sailthru"],
install_requires=[
'requests==2.25.1',
'singer-python==5.10.0',
],
extras_require= {
'dev': [
'pylint==2.7.4',
]
},
entry_points="""
[console_scripts]
tap-sailthru=tap_sailthru:main
""",
packages=find_packages(exclude=["tests"]),
package_data = {
"schemas": ["tap_sailthru/schemas/*.json"]
},
include_package_data=True,
)