From 15fc972c89a4366a06755daeedaac52f91762ecd Mon Sep 17 00:00:00 2001 From: tlatorre Date: Mon, 11 May 2020 10:30:39 -0500 Subject: update utils/ folder to make a python package called sddm This commit adds an sddm python package to the utils/ folder. This allows me to consolidate code used across all the various scripts. This package is now installed by default to /home/tlatorre/local/lib/python2.7/site-packages so you should add the following to your .bashrc file: export PYTHONPATH=$HOME/local/lib/python2.7/site-packages/:$PYTHONPATH before using the scripts installed to ~/local/bin. --- utils/setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 utils/setup.py (limited to 'utils/setup.py') diff --git a/utils/setup.py b/utils/setup.py new file mode 100755 index 0000000..23a2ebe --- /dev/null +++ b/utils/setup.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python +from distutils.core import setup + +setup(name='sddm', + version='0.1', + description="Self-destructing dark matter python scripts", + author="Anthony LaTorre", + packages=['sddm'], + install_requires=['numpy', 'pandas', 'matplotlib'] +) -- cgit