Skip to content

Commit

Permalink
Added setup files
Browse files Browse the repository at this point in the history
  • Loading branch information
pranath-reddy authored Aug 19, 2020
1 parent 1d0bde0 commit a0a59a4
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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',
],
)

0 comments on commit a0a59a4

Please sign in to comment.