We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6abcd0b commit 24f5c10Copy full SHA for 24f5c10
README.md
@@ -11,7 +11,7 @@ To install and still develop with it:
11
```console
12
$ virtualenv venv
13
$ . venv/bin/activate
14
-$ pip3 install -r requirements.txt --editable .
+$ pip3 install --editable .
15
```
16
17
Then you have a small program called `cjio`, to see its possibities:
requirements.txt
setup.py
@@ -25,6 +25,11 @@
25
'Operating System :: MacOS :: MacOS X',
26
'Operating System :: Microsoft :: Windows'
27
],
28
+ install_requires=[
29
+ 'Click',
30
+ 'jsonschema',
31
+ 'jsonref'
32
+ ],
33
entry_points='''
34
[console_scripts]
35
cjio=cjio.cjio:cli
0 commit comments