Skip to content
Snippets Groups Projects
Commit f94a4430 authored by Akdel's avatar Akdel
Browse files

scripts parameter added to setup

parent 5fe4105d
No related branches found
No related tags found
No related merge requests found
......@@ -24,16 +24,11 @@ cd caretta
### Install both the command-line interface and the web-application:
```bash
pip install -e ".[GUI]"
cd bin
chmod +x caretta-cli
chmod +x caretta-app
```
### Install only the command-line interface:
```bash
pip install .
cd bin
chmod +x caretta-cli
```
### Environment variables:
......@@ -47,14 +42,14 @@ export NUMBA_NUM_THREADS=20 # change to required number of threads
### Command-line Usage
```bash
./caretta-cli input_pdb_folder
# e.g. ./caretta-cli ../test_data
caretta-cli input_pdb_folder
# e.g. caretta-cli test_data
# caretta-cli -h for more options
```
### Web-application Usage
```bash
./caretta-app <host-ip> <port>
caretta-app <host-ip> <port>
# e.g. caretta-app localhost 8091
```
......@@ -8,5 +8,6 @@ setup(name='caretta',
extras_require={
'GUI': ["dash==1.3.1", "dash-bio==0.1.4", "cryptography",
"dash-core-components==1.2.1", "dash-html-components==1.0.1", "dash-renderer==1.1.0",
"dash-table==4.3.0", "plotly==3.7.1", "flask"]
})
"dash-table==4.3.0", "plotly==3.7.1", "flask"]},
scripts=["bin/caretta-app", "bin/caretta-cli"]
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment