Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
nomad-lab
parser-cp2k
Commits
e83d29d7
Commit
e83d29d7
authored
May 03, 2016
by
pupu
Browse files
setup.py installs subpackages and needed data files.
parent
6cc7ef53
Changes
1
Hide whitespace changes
Inline
Side-by-side
parser/parser-cp2k/setup.py
View file @
e83d29d7
...
...
@@ -2,7 +2,7 @@
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
from
setuptools
import
setup
,
find_packages
#===============================================================================
...
...
@@ -13,13 +13,13 @@ def main():
version
=
"0.1"
,
include_package_data
=
True
,
package_data
=
{
'
'
:
[
'
*.pickle'
],
'
cp2kparser.versions.cp2k262'
:
[
'input_data/*.json'
,
'input_data/
*.pickle'
],
},
description
=
"NoMaD parser implementation for CP2K"
,
author
=
"Lauri Himanen"
,
author_email
=
"lauri.himanen@gmail.com"
,
license
=
"GPL3"
,
packages
=
[
"cp2kparser"
]
,
packages
=
find_packages
()
,
install_requires
=
[
'pint'
,
'numpy'
,
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment