Skip to content

Commit

Permalink
distutils
Browse files Browse the repository at this point in the history
  • Loading branch information
carronj committed Feb 7, 2024
1 parent 5c52f3b commit a2b6ed6
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
import setuptools
from numpy.distutils.core import setup
from numpy.distutils.misc_util import Configuration
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
#def configuration(parent_package='', top_path=''):
# config = Configuration('', parent_package, top_path)
# return config

exec(open('lenspyx/_version.py').read())
setup(
Expand All @@ -22,6 +20,6 @@ def configuration(parent_package='', top_path=''):
author_email='to.jcarron@gmail.com',
description='lensed CMB sims pipe',
install_requires=['ducc0'],
long_description=long_description,
configuration=configuration)
long_description=long_description,)
# configuration=configuration)

0 comments on commit a2b6ed6

Please sign in to comment.