forked from singer-io/tap-appfigures
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 697 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='tap-appfigures',
version='0.2.0',
description='Singer.io tap for extracting data from the AppFigures API',
author='coen@compassmentis.com for Meow Wolf',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_appfigures'],
install_requires=[
'singer-python>=5.12.2',
'requests>=2.20.1',
],
entry_points='''
[console_scripts]
tap-appfigures=tap_appfigures:main
''',
packages=find_packages(),
package_data={
'tap_appfigures': [
'schemas/*.json'
]
})