move basename operation from setup.py to install.py

This commit is contained in:
Axel Kohlmeyer
2022-02-27 07:02:39 -05:00
parent 7c11d1675d
commit 0be14d4ed8
2 changed files with 2 additions and 2 deletions

View File

@ -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 = {}