From 9c03465962cddb4362de58a559d592935740242b Mon Sep 17 00:00:00 2001 From: Brennan Abanades Date: Tue, 27 Jul 2021 14:53:26 +0100 Subject: [PATCH] Added code to pypi for easier installation --- README.md | 7 ++++--- setup.py | 6 +++++- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a6f6957..ab23f0c 100644 --- a/README.md +++ b/README.md @@ -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/ ``` diff --git a/setup.py b/setup.py index 61ce906..dc3f56b 100644 --- a/setup.py +++ b/setup.py @@ -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='brennan.abanadeskenyon@stx.ox.ac.uk', include_package_data=True, packages=find_packages(include=('ABlooper', 'ABlooper.*')),