Squashed 'third_party/pycrc/' content from commit cb91196b9

Change-Id: Iaed6f7d683e3c11395f10f0724f973363aad2cdb
git-subtree-dir: third_party/pycrc
git-subtree-split: cb91196b920d1f892c05941ed470c7a80cba7596
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..7d270ae
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,12 @@
+from distutils.core import setup
+
+from pycrc import progname, version, url
+
+setup(name = 'pycrc',
+        version = version,
+        description = 'Free, easy to use Cyclic Redundancy Check source code generator for C/C++',
+        author = 'Thomas Pircher',
+        author_email = 'tehpeh-web@tty1.net',
+        url = url,
+        packages = ['pycrc'],
+        )