forked from singer-io/tap-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·40 lines (39 loc) · 933 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
40
#!/usr/bin/env python
from setuptools import setup
setup(
name="tap-stripe",
version="3.2.0",
description="Singer.io tap for extracting data",
author="Stitch",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_stripe"],
install_requires=[
"singer-python==6.0.0",
"stripe==5.5.0",
],
extras_require={
'test': [
'pylint==3.0.3',
'nose2',
'coverage',
'parameterized==0.9.0',
],
'dev': [
'ipdb',
'pylint',
'astroid==2.5.1',
'nose2',
'parameterized==0.9.0',
]
},
entry_points="""
[console_scripts]
tap-stripe=tap_stripe:main
""",
packages=["tap_stripe"],
package_data = {
"schemas": ["tap_stripe/schemas/*.json"]
},
include_package_data=True,
)