chiark / gitweb /
Add setup.py and move base91.py to a package
authorSunDwarf <eyesismine@gmail.com>
Fri, 15 Jan 2016 19:28:27 +0000 (19:28 +0000)
committerSunDwarf <eyesismine@gmail.com>
Fri, 15 Jan 2016 19:28:27 +0000 (19:28 +0000)
Signed-off-by: SunDwarf <eyesismine@gmail.com>
base91/__init__.py [moved from base91.py with 100% similarity]
setup.py [new file with mode: 0644]

similarity index 100%
rename from base91.py
rename to base91/__init__.py
diff --git a/setup.py b/setup.py
new file mode 100644 (file)
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'
+)