Skip to content

Commit

Permalink
Migrate to pyproject requirements setup
Browse files Browse the repository at this point in the history
  • Loading branch information
stkbailey committed Aug 6, 2021
1 parent 3754d97 commit ba6e643
Show file tree
Hide file tree
Showing 11 changed files with 239 additions and 71 deletions.
Empty file added .secrets/.gitkeep
Empty file.
11 changes: 0 additions & 11 deletions Dockerfile

This file was deleted.

2 changes: 0 additions & 2 deletions MANIFEST.in

This file was deleted.

10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ It can generate a catalog of available data in Clockify and extract the followin
- users
- workspaces

### Configuration

```
{
"api_key": "string",
"workspace": "string",
"start_date": "2020-04-01T00:00:00Z"
}
```

### Quick Start

1. Install
Expand Down
5 changes: 0 additions & 5 deletions config.example.json

This file was deleted.

29 changes: 0 additions & 29 deletions docker-entrypoint.py

This file was deleted.

210 changes: 210 additions & 0 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[tool.poetry]
name = "tap-clockify"
version = "1.0.0"
description = "Singer tap for extracting data from Clockify"
authors = ["Stephen Bailey <[email protected]>"]
license = "GNU"
readme = "README.md"
packages = [{include = "tap_clockify"}]

[tool.poetry.dependencies]
python = "^3.8"
singer-python = "5.9.0"
requests = "^2.26.0"

[tool.poetry.dev-dependencies]

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
2 changes: 0 additions & 2 deletions requirements.txt

This file was deleted.

2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

20 changes: 0 additions & 20 deletions setup.py

This file was deleted.

0 comments on commit ba6e643

Please sign in to comment.