Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
west-public
westpy
Commits
bd784da5
Commit
bd784da5
authored
Oct 18, 2019
by
Marco Govoni
Browse files
Bumped to 4.1.0
parent
507abff0
Pipeline
#1549
failed with stages
in 19 minutes and 32 seconds
Changes
5
Pipelines
2
Show whitespace changes
Inline
Side-by-side
Makefile
View file @
bd784da5
PYT
=
python
PYT
=
python
3
install
:
install
:
${PYT}
setup.py
install
--user
--record
files.txt
${PYT}
setup.py
install
--user
--prefix
=
--record
files.txt
clean
:
clean
:
rm
-rf
westpy.egg-info
rm
-rf
westpy.egg-info
...
...
doc/conf.py
View file @
bd784da5
...
@@ -64,7 +64,7 @@ author = u'Marco Govoni'
...
@@ -64,7 +64,7 @@ author = u'Marco Govoni'
# built documents.
# built documents.
#
#
# The short X.Y version.
# The short X.Y version.
version
=
'4.
0
.0'
version
=
'4.
1
.0'
# The full version, including alpha/beta/rc tags.
# The full version, including alpha/beta/rc tags.
release
=
version
release
=
version
...
...
setup.py
View file @
bd784da5
...
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
...
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
long_description
=
fh
.
read
()
long_description
=
fh
.
read
()
setup
(
name
=
'westpy'
,
setup
(
name
=
'westpy'
,
version
=
'4.
0
.0'
,
version
=
'4.
1
.0'
,
packages
=
find_packages
(),
packages
=
find_packages
(),
description
=
'Python analysis tools for WEST'
,
description
=
'Python analysis tools for WEST'
,
long_description
=
long_description
,
long_description
=
long_description
,
...
@@ -25,7 +25,7 @@ setup(name='westpy',
...
@@ -25,7 +25,7 @@ setup(name='westpy',
'signac'
,
'signac'
,
'setuptools'
,
'setuptools'
,
'urllib3'
,
'urllib3'
,
'prompt-toolkit
<2.0.0
'
,
'prompt-toolkit'
,
'sphinx'
,
'sphinx'
,
'sphinx_rtd_theme'
'sphinx_rtd_theme'
],
],
...
...
westpy/__init__.py
View file @
bd784da5
...
@@ -9,7 +9,7 @@ from westpy.dataContainer import *
...
@@ -9,7 +9,7 @@ from westpy.dataContainer import *
from
westpy.electronicStructure
import
*
from
westpy.electronicStructure
import
*
from
westpy.session
import
*
from
westpy.session
import
*
__version__
=
'
3
.1.
1
'
__version__
=
'
4
.1.
0
'
def
header
()
:
def
header
()
:
"""Prints welcome header."""
"""Prints welcome header."""
...
...
westpy/utils.py
View file @
bd784da5
...
@@ -321,10 +321,10 @@ def write_cube(data, meta, fname):
...
@@ -321,10 +321,10 @@ def write_cube(data, meta, fname):
params:
params:
data: volumetric data consisting real values
data: volumetric data consisting real values
meta: dict containing metadata with following keys
meta: dict containing metadata with following keys
:
atoms: list of atoms in the form (mass, [position])
-
atoms: list of atoms in the form (mass, [position])
org: origin
-
org: origin
xvec,yvec,zvec: lattice vector basis
-
xvec,yvec,zvec: lattice vector basis
fname: filename of cubefile (existing files overwritten)
fname: filename of cubefile (existing files overwritten)
returns: None
returns: None
...
@@ -357,9 +357,9 @@ def write_imcube(data, meta, rfname, ifname=""):
...
@@ -357,9 +357,9 @@ def write_imcube(data, meta, rfname, ifname=""):
params:
params:
data: volumetric data consisting complex values
data: volumetric data consisting complex values
meta: dict containing metadata with following keys
meta: dict containing metadata with following keys
atoms: list of atoms in the form (mass, [position])
-
atoms: list of atoms in the form (mass, [position])
org: origin
-
org: origin
xvec,yvec,zvec: lattice vector basis
-
xvec,yvec,zvec: lattice vector basis
rfname: filename of cube file containing real part
rfname: filename of cube file containing real part
ifname: optional, filename of cube file containing imag part
ifname: optional, filename of cube file containing imag part
...
...
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