From e47b7fbbe9debb892cf9eac4d80b3d7d73baa5b3 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Mon, 24 Dec 2018 13:07:06 -0800 Subject: [PATCH] Add setup.py --- .circleci/config.yml | 1 + setup.py | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 setup.py diff --git a/.circleci/config.yml b/.circleci/config.yml index 8879788..78479fb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,6 +20,7 @@ jobs: python3 -m venv venv . venv/bin/activate pip install -r dev-requirements.txt + pip install -e . - save_cache: paths: diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..6e0ccda --- /dev/null +++ b/setup.py @@ -0,0 +1,11 @@ +import setuptools + +setuptools.setup( + name="simpervisor", + version='0.1', + url="https://github.com/yuvipanda/simpervisor", + author="Yuvi Panda", + author_email="yuvipanda@gmail.com", + license="BSD 3-Clause", + packages=setuptools.find_packages(), +)