Skip to content

Commit

Permalink
Merge pull request #1 from brennanaba/pip_install
Browse files Browse the repository at this point in the history
Added code to pypi for easier installation
  • Loading branch information
brennanaba authored Jul 27, 2021
2 parents ca5c3e4 + 9c03465 commit 766a32b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@ Antibodies are a key component of the immune system and have been extensively us

## Install

To download:
To install via PyPi

```bash
$ git clone https://github.com/brennanaba/ABlooper.git
$ pip install ABlooper
```

To install
To download and install the latest version from github:

```bash
$ git clone https://github.com/brennanaba/ABlooper.git
$ pip install ABlooper/
```

Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='ABlooper',
version='0.0.1',
version='1.0.1',
description='Set of functions to predict CDR structure',
license='BSD 3-clause license',
maintainer='Brennan Abanades',
long_description=long_description,
long_description_content_type='text/markdown',
maintainer_email='[email protected]',
include_package_data=True,
packages=find_packages(include=('ABlooper', 'ABlooper.*')),
Expand Down

0 comments on commit 766a32b

Please sign in to comment.