-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 837 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 837 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
import versioneer
from setuptools import find_packages, setup
with open("README.rst") as readme_file:
readme = readme_file.read()
setup(
name="pspipe",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Simons Observatory Collaboration Power Spectrum Task Force",
url="https://github.com/simonsobs/PSpipe",
description="Pipeline analysis for the SO LAT experiment",
long_description=readme,
license="BSD license",
python_requires=">=3.5",
zip_safe=True,
packages=find_packages(),
install_requires=[
"scipy",
"camb",
"pspy>=1.7.0",
"pspipe_utils>=0.1.5",
"simple_slurm",
"wget",
],
package_data={"pspipe": ["js/multistep2.js"]},
entry_points={"console_scripts": ["pspipe-run=pspipe.run:main"]},
)