-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add simple setup.py so pkg can be used more easily
- Loading branch information
Showing
3 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,10 @@ | |
photometric redshift algorithms, and deblending algorithms. | ||
""" | ||
|
||
__author__ = 'WeakLensingDeblending developers' | ||
__email__ = '[email protected]' | ||
__version__ = '0.3dev' | ||
|
||
from . import catalog | ||
from . import survey | ||
from . import model | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
from setuptools import setup | ||
|
||
requirements = [ | ||
'fitsio', | ||
'galsim', | ||
'numpy', | ||
'astropy', | ||
'lmfit', | ||
'six' | ||
] | ||
|
||
setup( | ||
name='descwl', | ||
version='0.3dev', | ||
description='Weak lensing fast simulations and analysis for the LSST DESC', | ||
long_description='Weak lensing fast simulations and analysis for the LSST DESC', | ||
author='descwl developers', | ||
author_email='[email protected]', | ||
url='https://github.com/LSSTDESC/WeakLensingDeblending', | ||
packages=[ | ||
'descwl', | ||
], | ||
package_dir={'descwl': 'descwl'}, | ||
scripts = [ ], | ||
#include_package_data=True, | ||
#zip_safe=False, | ||
install_requires=[ ], #requirements, | ||
license='MIT', | ||
) |