upgrade to CAM v2.0
[stack/cam.git] / setup.py
diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..1c20350
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,22 @@
+#!/usr/bin/python
+
+from setuptools import setup, find_packages
+
+setup(
+  name="cam",
+  version="2.0",
+  description="X509 Certification Authority management",
+  author="ale",
+  author_email="ale@incal.net",
+  url="http://code.autistici.org/p/cam",
+  install_requires=[],
+  setup_requires=[],
+  zip_safe=False,
+  packages=find_packages(),
+  entry_points={
+    "console_scripts": [
+      "cam = cam.main:main",
+    ],
+  },
+  )
+