From 62daa9c805ef8287ecfa9b7cc3d2cf3f90ecec98 Mon Sep 17 00:00:00 2001 From: Veena Gondkar Date: Wed, 9 Oct 2019 14:14:59 -0500 Subject: [PATCH] Fix setup.py to install requirements --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 727991d..c48e4f4 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python from setuptools import setup, find_packages @@ -38,6 +37,8 @@ include_package_data=True, install_requires=[ "requests>=2.20.0", + "factom-api", + "factom-keys", ], url="https://github.com/pegnet/fat-py", )