-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 892 Bytes
/
setup.py
File metadata and controls
40 lines (37 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
requirements = [
'fitsio',
'galsim',
'numpy',
'astropy',
'lmfit',
'six'
]
pth = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
"descwl",
"version.py"
)
with open(pth, 'r') as fp:
exec(fp.read())
setup(
name='descwl',
version=__version__,
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='dkirkby@uci.edu',
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',
)