-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·45 lines (38 loc) · 1.26 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
#!/usr/bin/env python
from setuptools import setup
VERSION = "0.1.2"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="tap-exchangeratehost",
version=VERSION,
description="Singer.io tap for extracting currency exchange rate data from the exchangerate.host API",
long_description=long_description,
long_description_content_type="text/markdown",
author="Daigo Tanaka, Anelen Co., LLC",
url="http://github.com/anelendata/tap-exchangeratehost",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
install_requires=[
"singer-python>=5.3.0",
"requests>=2.23.0",
],
entry_points="""
[console_scripts]
tap-exchangeratehost=tap_exchangeratehost:main
""",
packages=["tap_exchangeratehost"],
package_data={
# Use MANIFEST.ini
},
include_package_data=True
)