update format

This commit is contained in:
Axel Kohlmeyer 2019-03-25 17:14:58 -04:00
parent b0a741fc58
commit 0edb82eb5e
No known key found for this signature in database
GPG Key ID: D9B44E93BF0C375A
1 changed files with 9 additions and 9 deletions

View File

@ -118,6 +118,7 @@ try:
author_email = "sjplimp@sandia.gov",
url = "https://lammps.sandia.gov",
description = "LAMMPS Molecular Dynamics Python module",
license = "GPL",
py_modules = ["lammps"],
data_files = [(get_python_lib(prefix=args.prefix), [args.lib])])
except:
@ -128,14 +129,13 @@ if tryuser:
try:
sys.argv = ["setup.py","install","--user"] # as if had run "python setup.py install --user"
setup(name = "lammps",
version = verstr,
author = "Steve Plimpton",
author_email = "sjplimp@sandia.gov",
url = "https://lammps.sandia.gov",
description = "LAMMPS Molecular Dynamics Python module",
py_modules = ["lammps"],
data_files = [(site.USER_SITE, [args.lib])])
version = verstr,
author = "Steve Plimpton",
author_email = "sjplimp@sandia.gov",
url = "https://lammps.sandia.gov",
description = "LAMMPS Molecular Dynamics Python module",
license = "GPL",
py_modules = ["lammps"],
data_files = [(site.USER_SITE, [args.lib])])
except:
print("Installation into user site package folder failed.")