Skip to content

Commit

Permalink
fix README for pypi rendering (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebachmeier authored Nov 22, 2024
1 parent 588867d commit ff737ba
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 28 deletions.
55 changes: 28 additions & 27 deletions README.md → README.rst
Original file line number Diff line number Diff line change
@@ -1,47 +1,44 @@
# EasyLink
========
EasyLink
========

EasyLink is a framework that allows users to build and run highly configurable
entity resolution (ER) pipelines.

## Installation
Installation
============

There are a few things to install in order to use this package:

- Install singularity. If this is not already installed on your system, you will
likely need to request it from your system admin. Refer to https://docs.sylabs.io/guides/4.1/admin-guide/installation.html

- Install singularity. If this is not already installed on your system, you will likely need to request it from your system admin. Refer to https://docs.sylabs.io/guides/4.1/admin-guide/installation.html

- Install graphviz via

```
$ conda install graphviz
```

``> conda install graphviz``

- Install EasyLink via

```
$ pip install easylink
```
``> pip install easylink``

OR

```
$ cd <path/to/repositories/>
$ git clone [email protected]:ihmeuw/easylink.git
$ # OR `git clone https://github.com/ihmeuw/easylink.git`
$ cd easylink
$ pip install .
```
``> cd <path/to/repositories/>``

``> git clone [email protected]:ihmeuw/easylink.git``

``> # OR git clone https://github.com/ihmeuw/easylink.git``

``> cd easylink``

## Quickstart
``> pip install .``

Quickstart
==========

To run a pipeline, use `easylink run` from the command line and pass in the
paths to both a pipeline specification and an input data specification:

```
$ easylink run -p <PIPELINE-SPECIFICATION> -i <INPUT-DATA-SPECIFICATION>
```
``> easylink run -p <PIPELINE-SPECIFICATION> -i <INPUT-DATA-SPECIFICATION>``

There are several other optional arguments to `easylink run` as well;
for help, use `easylink run --help`
Expand All @@ -50,13 +47,17 @@ Note that a schematic of the pipeline's directed acyclic graph (DAG) that is run
is automatically generated. If this schematic is desired _without_ actually
running the pipeline, use `easylink generate-dag`:

```
$ easylink generate-dag -p <PIPELINE-SPECIFICATION> -i <INPUT-DATA-SPECIFICATION>
```
``> easylink generate-dag -p <PIPELINE-SPECIFICATION> -i <INPUT-DATA-SPECIFICATION>``

As before, refer to `easylink generate-dag --help` for information on other
options.

### Requirements
Requirements
============

TBD

Documentation
=============

TBD
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
with open(os.path.join(src_dir, "easylink", "__about__.py")) as f:
exec(f.read(), about)

with open(os.path.join(base_dir, "README.md")) as f:
with open(os.path.join(base_dir, "README.rst")) as f:
long_description = f.read()

install_requirements = [
Expand Down

0 comments on commit ff737ba

Please sign in to comment.