forked from LSSTDESC/PSFHOME
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 797 Bytes
/
setup.py
File metadata and controls
35 lines (31 loc) · 797 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
import os
from setuptools import setup, find_packages
# version of the package
__version__ = "v1.0.0"
# fname = os.path.join(
# os.path.dirname(os.path.realpath(__file__)), "psfhome", "__version__.py"
# )
# print(fname)
# with open(fname, "r") as ff:
# exec(ff.read())
scripts = []
setup(
name="psfhome",
version=__version__,
description="Impact of PSF Higher Order Moments Error on Weak Lensing",
author="Tianqing Zhang",
author_email="tianqinz@andrew.cmu.edu",
python_requires=">=3.5",
install_requires=[
"numpy",
"scipy",
"galsim",
"astropy",
"matplotlib",
],
packages=find_packages(),
scripts=scripts,
include_package_data=True,
zip_safe=False,
url="https://github.com/LSSTDESC/PSFHOME",
)