From 0edb82eb5e685b68859a1d960ea0ce656e053711 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Mon, 25 Mar 2019 17:14:58 -0400 Subject: [PATCH] update format --- python/install.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/python/install.py b/python/install.py index 613b3e4c84..9f23e5a896 100644 --- a/python/install.py +++ b/python/install.py @@ -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.") - -