From dd917826258ec0ebe63e58cb345adf894534ad4e Mon Sep 17 00:00:00 2001 From: Colm Talbot <colm.talbot@ligo.org> Date: Tue, 27 Mar 2018 12:46:06 +1100 Subject: [PATCH] add basic readme, setup init --- .gitignore | 0 README.md | 3 +++ peyote/__init__.py | 1 + setup.py | 8 ++++++++ 4 files changed, 12 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..e69de29bb diff --git a/README.md b/README.md index e69de29bb..4e9516b39 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,3 @@ +# PEYOte + +Fulfilling all your GW dreams. \ No newline at end of file diff --git a/peyote/__init__.py b/peyote/__init__.py index e69de29bb..b92cf98b2 100644 --- a/peyote/__init__.py +++ b/peyote/__init__.py @@ -0,0 +1 @@ +from __future__ import print_function, division \ No newline at end of file diff --git a/setup.py b/setup.py index e69de29bb..2a5a9f956 100644 --- a/setup.py +++ b/setup.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup(name='PEYOte', + version='0.1', + packages=['peyote'], + ) -- GitLab