Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
cmbant committed Jun 5, 2024
1 parent 2eec216 commit 5e9a699
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
import os
import shutil
from typing import Any
from setuptools import setup
from setuptools import setup, Extension, Command
from setuptools.command.build_py import build_py
from setuptools.command.develop import develop
from setuptools.command.install import install
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
from setuptools import Command

file_dir = os.path.abspath(os.path.dirname(__file__))
os.chdir(file_dir)
Expand All @@ -21,6 +20,7 @@
else:
DLLNAME = 'camblib.so'


def get_forutils():
fpath = os.getenv('FORUTILSPATH')

Expand Down Expand Up @@ -273,5 +273,11 @@ def finalize_options(self):
package_data={'camb': [DLLNAME, 'HighLExtrapTemplate_lenspotentialCls.dat',
'PArthENoPE_880.2_marcucci.dat', 'PArthENoPE_880.2_standard.dat',
'PRIMAT_Yp_DH_Error.dat', 'PRIMAT_Yp_DH_ErrorMC_2021.dat']},
ext_modules=[
Extension(
name='your.external.module',
sources=[]
)
],
test_suite='camb.tests'
)

0 comments on commit 5e9a699

Please sign in to comment.