aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 5983ba3e541a128055d38ea9abffa0cadb957015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# gn-libs: GeneNetwork Libraries

This is a collection of tools/utilities that find use in more than one
GeneNetwork project.

## Installing

* TODO: Document this

## Developing

### Code Checks: Linting and Typing

Run linter
```sh
pylint $(find gn_libs -name '*.py')
```

Run mypy
```sh
mypy --show-error-codes .
```

### Running Tests

* TODO: Document this