From 7a458de795343b5bc7d1e6769c6a1874eb976e03 Mon Sep 17 00:00:00 2001 From: Andrew-Chen-Wang Date: Mon, 5 Jul 2021 19:30:35 -0400 Subject: [PATCH] Add pip install instructions --- README.md | 4 ++++ setup.py | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 82c83f0..c540fe3 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,10 @@ Additionally, we needed to store older data in bulk for our open source develope so we decided to utilize GitHub Actions and its cron job. We update our releases of bulk data on a daily cycle. +## New Installation + +`pip install congress-crawler` + ### Notes! After reviewing much of this repository, lots of code is just missing and not updated. diff --git a/setup.py b/setup.py index 4629e0b..b24071c 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,9 @@ #!/usr/bin/env python from pathlib import Path -from setuptools import setup, find_packages + +from setuptools import find_packages, setup + from congress_crawler import __version__