From 673449c2288fd03b4b4f4bc23f114753efc910f1 Mon Sep 17 00:00:00 2001
From: Iustin Pop <iusty@k1024.org>
Date: Sat, 21 Dec 2002 21:07:55 +0000
Subject: [PATCH] Initial revision

---
 setup.py | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 setup.py

diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..0cc6d37
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python2
+
+import distutils
+from distutils.core import setup, Extension
+
+setup(name="pyacl",
+      version="0.1",
+      ext_modules=[Extension("attrmodule", ["attr.c"], libraries=["attr"])],
+      )
-- 
2.39.5