Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
parser-cpmd
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
nomad-lab
parser-cpmd
Commits
00a1d60f
Commit
00a1d60f
authored
7 years ago
by
Lauri Himanen
Browse files
Options
Downloads
Patches
Plain Diff
Simplified setup.py.
parent
2f54b247
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+2
-10
2 additions, 10 deletions
setup.py
with
2 additions
and
10 deletions
setup.py
+
2
−
10
View file @
00a1d60f
"""
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
=
"
cpmdparser
"
,
version
=
"
0.1
"
,
description
=
"
N
oMa
D parser implementation for CPMD.
"
,
description
=
"
N
OMA
D parser implementation for CPMD.
"
,
author
=
"
Lauri Himanen
"
,
author_email
=
"
lauri.himanen@aalto.fi
"
,
license
=
"
GPL3
"
,
package_dir
=
{
''
:
'
parser/parser-cpmd
'
},
packages
=
find_packages
(),
install_requires
=
[
'
pint
'
,
'
numpy
'
,
'
nomadcore
'
,
],
)
# Run main function by default
if
__name__
==
"
__main__
"
:
main
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment