forked from carronj/lenspyx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 925 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (22 loc) · 925 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
import setuptools
from numpy.distutils.core import setup
from numpy.distutils.misc_util import Configuration
with open("README.md", "r") as fh:
long_description = fh.read()
def configuration(parent_package='', top_path=''):
config = Configuration('', parent_package, top_path)
return config
exec(open('lenspyx/_version.py').read())
setup(
name='lenspyx',
version=__version__,
packages=['lenspyx', 'lenspyx.remapping', 'lenspyx.tests', 'lenspyx.wigners'],
url='https://github.com/carronj/lenspyx',
author='Julien Carron',
data_files=[('lenspyx/data/cls', ['lenspyx/data/cls/FFP10_wdipole_lensedCls.dat',
'lenspyx/data/cls/FFP10_wdipole_lenspotentialCls.dat'])],
author_email='to.jcarron@gmail.com',
description='lensed CMB sims pipe',
install_requires=['ducc0'],
long_description=long_description,
configuration=configuration)