diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000000000000000000000000000000000000..2e6ad1d29543d900241218108c1cb953a9dd3a7e
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,21 @@
+from distutils.core import setup
+
+setup(
+    name='geomag-algorithms',
+    version='0.0.0',
+    desription='USGS Geomag IO Library',
+    url='https://github.com/usgs/geomag-algorithms',
+    packages=[
+        'geomagio',
+        'geomagio.iaga2002'
+    ],
+    install_requires=[
+        'numpy',
+        'matplotlib',
+        'scipy',
+        'obspy'
+    ],
+    scripts=[
+        'bin/xyz.py'
+    ]
+)