From 43687c243587d7549a115ee1867c5c603fd2e044 Mon Sep 17 00:00:00 2001
From: Lee McCuller <Lee.McCuller@gmail.com>
Date: Wed, 30 May 2018 11:00:38 -0400
Subject: [PATCH] add base setup.py

---
 setup.py | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)
 create mode 100755 setup.py

diff --git a/setup.py b/setup.py
new file mode 100755
index 00000000..95e00c7d
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,43 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+from __future__ import division, print_function, unicode_literals
+from setuptools import find_packages, setup
+
+
+version = '0.9.5'
+
+
+setup_args = dict(
+    name             = 'GWINC',
+    version          = version,
+    url              = 'https://github.com/mccullerlp/iirrational',
+    author           = 'LIGO Laboratory',
+    author_email     = 'jrollins@ligo.caltech.edu ',
+    description      = "Gravitation Wave Interferometer Noice Calculator",
+    license          = 'Copyright 2017 LIGO Laboratory',
+    install_requires = [
+        'numpy',
+        'scipy',
+        'matplotlib',
+    ],
+    packages = find_packages(
+        exclude = ['docs',],
+    ),
+    include_package_data = True,
+    zip_safe = True,
+    keywords = 'Noise, LIGO, Gravitational Wave,',
+    classifiers=[
+        'Topic :: Scientific/Engineering',
+        'Operating System :: OS Independent',
+        'Programming Language :: Python',
+        'Programming Language :: Python :: 2',
+        'Programming Language :: Python :: 2.7',
+        'Programming Language :: Python :: 3',
+        'Programming Language :: Python :: 3.4',
+        'Programming Language :: Python :: 3.5',
+        'Programming Language :: Python :: 3.6',
+    ],
+)
+
+if __name__ == "__main__":
+    setup(**setup_args)
-- 
GitLab