Skip to content

Commit

Permalink
Fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
stkbailey committed Apr 8, 2020
1 parent 55f67de commit 0739f5b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 13 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ state.json

# Visual Studio Code
.venv
.vscode
settings.json

# generated files
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include LICENSE
include tap_clockify/schemas/*.json
8 changes: 3 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
backoff
pytz
requests
singer-python
tap-framework
singer-python>=5.2.0
tap-framework==0.1.1
requests
12 changes: 4 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,19 @@
#!/usr/bin/env python
from setuptools import setup
import setuptools

setup(
setuptools.setup(
name="tap-clockify",
version="0.1.0",
description="Singer.io tap for extracting data",
author="Stitch",
author="Stephen Bailey",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_clockify"],
install_requires=[
"singer-python>=5.0.12",
"requests",
],
entry_points="""
[console_scripts]
tap-clockify=tap_clockify:main
""",
packages=["tap_clockify"],
packages=setuptools.find_packages(),
package_data = {
"schemas": ["tap_clockify/schemas/*.json"]
},
Expand Down

0 comments on commit 0739f5b

Please sign in to comment.