From b7869f2cbc292c12021c84afc3e1b5e655d861e5 Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Mon, 5 Apr 2021 18:50:23 -0700 Subject: [PATCH] Add a setup.py so this works as a package... --- strobe/python/setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 strobe/python/setup.py diff --git a/strobe/python/setup.py b/strobe/python/setup.py new file mode 100644 index 0000000..291c696 --- /dev/null +++ b/strobe/python/setup.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup(name='Strobe', + version='1.0.2', + description='crypto framework', + author='Mike Hamburg', + packages=['Strobe'], +)