Added a distutils script.
[pdm.git] / setup.py
diff --git a/setup.py b/setup.py
new file mode 100755 (executable)
index 0000000..5245a5c
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,13 @@
+#!/usr/bin/python
+
+from distutils.core import setup
+
+setup(name = "pdm",
+      version = "0.1",
+      description = "Python daemon management library",
+      author = "Fredrik Tolf",
+      author_email = "fredrik@dolda2000.com",
+      # url = "http://www.dolda2000.com/~fredrik/pdm/",
+      packages = ["pdm"],
+      scripts = ["pdm-repl"],
+      license = "GPL-3")