forked from envoy/tap-clubhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1000 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
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-clubhouse',
version='0.2.0',
description='Singer.io tap for extracting data from the Clubhouse API',
author='Kamal Mahyuddin',
author_email='[email protected]',
url='http://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_clubhouse'],
install_requires=[
'singer-python>=0.2.1',
'requests==2.12.4',
],
entry_points='''
[console_scripts]
tap-clubhouse=tap_clubhouse:main
''',
packages=['tap_clubhouse'],
package_data = {
'tap_clubhouse/schemas': [
'epics.json',
'members.json',
'milestones.json',
'projects.json',
'stories.json',
'teams.json',
],
},
include_package_data=True,
download_url='https://github.com/envoy/tap-clubhouse/archive/0.2.0.tar.gz'
)