Skip to content

Commit

Permalink
requirements in setup.py
Browse files Browse the repository at this point in the history
so that installed automatically for users who don’t know
  • Loading branch information
hugoledoux committed May 24, 2018
1 parent 6abcd0b commit 24f5c10
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ To install and still develop with it:
```console
$ virtualenv venv
$ . venv/bin/activate
$ pip3 install -r requirements.txt --editable .
$ pip3 install --editable .
```

Then you have a small program called `cjio`, to see its possibities:
Expand Down
3 changes: 0 additions & 3 deletions requirements.txt

This file was deleted.

5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows'
],
install_requires=[
'Click',
'jsonschema',
'jsonref'
],
entry_points='''
[console_scripts]
cjio=cjio.cjio:cli
Expand Down

0 comments on commit 24f5c10

Please sign in to comment.