Skip to content

Commit

Permalink
fix setup.py find_packages
Browse files Browse the repository at this point in the history
  • Loading branch information
lime-green committed Jun 28, 2020
1 parent 25c7cbf commit 3039306
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
## Unison Gitignore
[![PyPI version](https://badge.fury.io/py/unison-gitignore.svg)](https://badge.fury.io/py/unison-gitignore)

A gitignore-aware wrapper around [Unison](https://github.com/bcpierce00/unison)

`unison_gitignore` will walk the local root and any supplied paths and then call
`unison_gitignore` will walk the local root and any supplied paths finding gitignore files and then call
`unison` with the appropriate unison ignore patterns

## Usage
First install it:
```bash
pip install unison-gitignore
```

```bash
unison_gitignore /home/john_doe/local_root ssh://remote_root/ -path data
```
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
author="Josh DM",
url="https://github.com/lime-green/unison-gitignore",
package_dir={"": "src"},
packages=find_packages(exclude=["tests.*", "tests"]),
packages=find_packages(where="src"),
entry_points={
"console_scripts": [
"unison_gitignore = unison_gitignore.__main__:main",
Expand Down

0 comments on commit 3039306

Please sign in to comment.