Added distutils script.
[coe.git] / setup.py
diff --git a/setup.py b/setup.py
new file mode 100755 (executable)
index 0000000..a84d47f
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,11 @@
+#!/usr/bin/python3
+
+from distutils.core import setup, Extension
+
+setup(name = "coe",
+      version = "0.1",
+      description = "Common Object Encoding library",
+      author = "Fredrik Tolf",
+      author_email = "fredrik@dolda2000.com",
+      packages = ["coe"],
+      license = "GPL-3")