From: SunDwarf Date: Fri, 15 Jan 2016 19:28:27 +0000 (+0000) Subject: Add setup.py and move base91.py to a package X-Git-Tag: v0.6.0~199^2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=749aa78cf12496cca4b9bf3eafe045809fc0da10;p=secnet.git Add setup.py and move base91.py to a package Signed-off-by: SunDwarf --- diff --git a/base91.py b/base91/__init__.py similarity index 100% rename from base91.py rename to base91/__init__.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8fb8d22 --- /dev/null +++ b/setup.py @@ -0,0 +1,12 @@ +from setuptools import setup + +setup( + name='base91', + version='1.0.1', + packages=['base91'], + url='https://github.com/SunDwarf/base91-python', + license='New BSD', + author='', + author_email='', + description='Base91 encoding in Python' +)