-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
25 lines (20 loc) · 850 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
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='[email protected]',
description='lensed CMB sims pipe',
install_requires=['ducc0'],
long_description=long_description,)
# configuration=configuration)