From ccaa775525ad7a51551f0abaa1e0d4107431c57d Mon Sep 17 00:00:00 2001 From: Eric Borts Date: Thu, 24 Jun 2021 19:41:17 -0700 Subject: [PATCH] Add install to setup, so we can easily get dependencies. Add a git ignore file --- .gitignore | 3 +++ setup.py | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cdb5701 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.venv*/ +*.egg-info*/ +__pycache__/ \ No newline at end of file diff --git a/setup.py b/setup.py index 5d6d1d7..970b26d 100644 --- a/setup.py +++ b/setup.py @@ -19,4 +19,13 @@ "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", ], + install_requires=[ + "numpy", + "scipy" , + "pandas" , + "mpmath" , + "lmfit", + "matplotlib", + "seaborn" + ] ) \ No newline at end of file