From a0a59a49ec3081d6ce448bdb0a9ce0ece700ff22 Mon Sep 17 00:00:00 2001 From: Pranath Reddy Date: Wed, 19 Aug 2020 23:44:20 +0530 Subject: [PATCH] Added setup files --- setup.cfg | 2 ++ setup.py | 26 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 setup.cfg create mode 100644 setup.py diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b88034e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..592619a --- /dev/null +++ b/setup.py @@ -0,0 +1,26 @@ +from distutils.core import setup +setup( + name = 'lensing', + packages = ['PyLensing'], + version = '0.1', + license='MIT', + description = 'A tool for generating lensing images based on PyAutoLens simulations', + author = 'K Pranath Reddy', + author_email = 'pranath.mail@gmail.com', + url = 'https://github.com/DeepLense-Unsupervised/PyLensing', + keywords = ['Gravitational Lensing', 'Simulation', 'Dark Matter'], + install_requires=[ + 'numpy==1.18.3', + 'scipy==1.4.1', + 'joblib==0.14.1', + 'Cython==0.29.16', + 'pandas==1.0.3', + 'progress==1.5', + 'pymultinest==2.9', + 'autolens==0.46.2', + ], + classifiers=[ + 'Development Status :: 4 - Beta', + 'License :: OSI Approved :: MIT License', + ], +)