-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 771 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 771 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
#!/usr/bin/env python
"""
B-modes pipeline constructor
Based on DESC's ceci by F. Lanusse, J. Zuntz and others
https://github.com/LSSTDESC/ceci
"""
from setuptools import setup
setup(
name='BBPipe',
version='0.0.5',
description='Lightweight pipeline constructor for B-modes',
url='https://github.com/simonsobs/BBPipe',
maintainer='David Alonso',
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
packages=['bbpipe', 'bbpipe.sites'],
entry_points={
'console_scripts':['bbpipe=bbpipe.main:main']
},
install_requires=['pyyaml','parsl<0.6.0']
)