-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 1.02 KB
/
Copy pathsetup.py
File metadata and controls
27 lines (22 loc) · 1.02 KB
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
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', 'lenspyx.qest'],
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_gradlensedCls.dat',
'lenspyx/data/cls/FFP10_wtensors_tensCls.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)