Skip to content

Commit 24f5c10

Browse files
committed
requirements in setup.py
so that installed automatically for users who don’t know
1 parent 6abcd0b commit 24f5c10

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To install and still develop with it:
1111
```console
1212
$ virtualenv venv
1313
$ . venv/bin/activate
14-
$ pip3 install -r requirements.txt --editable .
14+
$ pip3 install --editable .
1515
```
1616

1717
Then you have a small program called `cjio`, to see its possibities:

requirements.txt

-3
This file was deleted.

setup.py

+5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@
2525
'Operating System :: MacOS :: MacOS X',
2626
'Operating System :: Microsoft :: Windows'
2727
],
28+
install_requires=[
29+
'Click',
30+
'jsonschema',
31+
'jsonref'
32+
],
2833
entry_points='''
2934
[console_scripts]
3035
cjio=cjio.cjio:cli

0 commit comments

Comments
 (0)