mirror of https://github.com/lammps/lammps.git
move basename operation from setup.py to install.py
This commit is contained in:
parent
7c11d1675d
commit
0be14d4ed8
|
@ -56,7 +56,7 @@ for wheel in glob.glob('lammps-*.whl'):
|
|||
|
||||
# copy shared object to the current folder so that
|
||||
# it will show up in the installation at the expected location
|
||||
os.putenv('LAMMPS_SHARED_LIB',args.lib)
|
||||
os.putenv('LAMMPS_SHARED_LIB',os.path.basename(args.lib))
|
||||
shutil.copy(args.lib,'lammps')
|
||||
|
||||
# create a virtual environment for building the wheel
|
||||
|
|
|
@ -37,7 +37,7 @@ with open("README", "r") as fh:
|
|||
|
||||
libname = os.environ.get("LAMMPS_SHARED_LIB")
|
||||
if libname:
|
||||
pkgdata = {'lammps': [ os.path.basename(libname) ]}
|
||||
pkgdata = {'lammps': [ libname ]}
|
||||
bdist = BinaryDistribution
|
||||
else:
|
||||
pkgdata = {}
|
||||
|
|
Loading…
Reference in New Issue