forked from gocardless/tap-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 816 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 python
from setuptools import setup, find_packages
setup(name='tap-slack',
version='0.0.2',
description='Singer.io tap for extracting data from the Slack Web API',
author='[email protected]',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_slack'],
install_requires=[
'singer-python==5.9.0',
'slackclient==2.6.0',
],
extras_require={
'dev': [
'pylint',
'ipdb',
'nose',
]
},
python_requires='>=3.6',
entry_points='''
[console_scripts]
tap-slack=tap_slack:main
''',
packages=find_packages(),
package_data={
'tap_slack': [
'schemas/*.json'
]
})