File tree 2 files changed +15
-6
lines changed
2 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ Current version: 2.0.0
17
17
## Examples:
18
18
19
19
```
20
- cromshell submit workflow.wdl inputs.json options.json dependencies.zip
21
- cromshell status
22
- cromshell -t 20 metadata
23
- cromshell logs -2
20
+ cromshell-alpha submit workflow.wdl inputs.json options.json dependencies.zip
21
+ cromshell-alpha status
22
+ cromshell-alpha -t 20 metadata
23
+ cromshell-alpha logs -2
24
24
```
25
25
26
26
## Supported Flags:
@@ -99,8 +99,17 @@ Current version: 2.0.0
99
99
100
100
## Installation
101
101
102
+ git clone [email protected] :broadinstitute/cromshell.git
103
+ cd cromshell
104
+ git checkout cromshell_2.0
102
105
pip install .
103
106
107
+ cromshell-alpha --help
108
+
109
+ ## Uninstallation
110
+
111
+ pip uninstall cromshell-alpha
112
+
104
113
## Development
105
114
106
115
To do development in this codebase, the python3 development package must
@@ -118,7 +127,7 @@ the following commands:
118
127
119
128
After following the above development environment setup steps, simply type
120
129
```
121
- cromshell
130
+ cromshell-alpha
122
131
```
123
132
Note that there is no leading ` ./ ` in this command. This is due to the
124
133
development setup adding the cromshell python script to your path.
Original file line number Diff line number Diff line change 38
38
"Programming Language :: Python :: 3.9" ,
39
39
"Programming Language :: Python :: Implementation :: CPython" ,
40
40
],
41
- entry_points = {"console_scripts" : ["cromshell=cromshell.__main__:main_entry" ]},
41
+ entry_points = {"console_scripts" : ["cromshell-alpha =cromshell.__main__:main_entry" ]},
42
42
include_package_data = True ,
43
43
)
You can’t perform that action at this time.
0 commit comments