Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
parser-nwchem
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nomad-lab
parser-nwchem
Commits
18a22a22
Commit
18a22a22
authored
Oct 19, 2017
by
Lauri Himanen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplified setup.py.
parent
d54602d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
10 deletions
+1
-10
setup.py
setup.py
+1
-10
No files found.
setup.py
View file @
18a22a22
"""
This is a setup script for installing the parser locally on python path with
all the required dependencies. Used mainly for local testing.
"""
from
setuptools
import
setup
,
find_packages
#===============================================================================
def
main
():
# Start package setup
setup
(
name
=
"nwchemparser"
,
version
=
"0.1"
,
description
=
"N
oMa
D parser implementation for NWChem."
,
description
=
"N
OMA
D parser implementation for NWChem."
,
author
=
"Lauri Himanen"
,
author_email
=
"lauri.himanen@aalto.fi"
,
license
=
"GPL3"
,
package_dir
=
{
''
:
'parser/parser-nwchem'
},
packages
=
find_packages
(),
install_requires
=
[
'pint'
,
'numpy'
,
'nomadcore'
,
],
)
# Run main function by default
if
__name__
==
"__main__"
:
main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment