Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
KAllan357 committed Sep 21, 2017
0 parents commit f285691
Show file tree
Hide file tree
Showing 3 changed files with 134 additions and 0 deletions.
100 changes: 100 additions & 0 deletions .gitignore
@@ -0,0 +1,100 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# IPython Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# dotenv
.env

# virtualenv
venv/
ENV/

# Spyder project settings
.spyderproject

# Rope project settings
.ropeproject

# Mac
._*
.DS_Store

# Custom stuff
env.sh
config.json
.autoenv.zsh

*~
28 changes: 28 additions & 0 deletions setup.py
@@ -0,0 +1,28 @@
#!/usr/bin/env python

from setuptools import setup

setup(name='tap-salesforce',
version='0.0.1',
description='Singer.io tap for extracting data from the Salesforce API',
author='Stitch',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_salesforce'],
install_requires=[
'simple-salesforce==0.73.0',
'requests==2.12.4',
'singer-python==3.2.0',
],
entry_points='''
[console_scripts]
tap-salesforce=tap_salesforce:main
''',
packages=['tap_salesforce'],
package_data = {
'tap_salesforce/schemas': [
# add schema.json filenames here
]
},
include_package_data=True,
)
6 changes: 6 additions & 0 deletions tap_salesforce/__init__.py
@@ -0,0 +1,6 @@
#!/usr/bin/env python3
import json
from simple_salesforce import Salesforce

def main():
print("Hello World")

0 comments on commit f285691

Please sign in to comment.