From 92f8550f9cd763891f1abc81c6eb6171899e4d78 Mon Sep 17 00:00:00 2001 From: Jason Robinson Date: Sun, 5 Jul 2015 23:24:08 +0300 Subject: [PATCH] Add a setup.py file --- setup.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..0e8a155 --- /dev/null +++ b/setup.py @@ -0,0 +1,19 @@ +#!/usr/bin/env python + +from setuptools import setup, find_packages + +setup( + name='Social-Federation', + version='0.1.0', + description='Python library for abstracting social federation protocols', + author='Jason Robinson', + author_email='mail@jasonrobinson.me', + url='https://github.com/jaywink/social-federation', + packages=find_packages(exclude=["*.tests.*", "*.tests"]), + license="BSD 3-clause", + install_requires=[ + "Flask==0.10.1", + "hiredis==0.2.0", + "redis==2.10.3", + ], +)