Skip to content

Commit 80d6d91

Browse files
authored
Merge pull request #12 from maclariz/initupdate
Initupdate
2 parents 1a190a8 + 94e680b commit 80d6d91

File tree

5 files changed

+6
-3
lines changed

5 files changed

+6
-3
lines changed

__init__.py

-1
This file was deleted.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "pixstem_tools"
33
# Do not edit the next line
4-
version = "v0.1.6"
4+
version = "v0.1.7"
55
authors = [
66
{name="Dr. Ian MacLaren", email="ian.maclaren@glasgow.ac.uk"},
77
]

src/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from pixstem_tools.src.files import files
2+
from pixstem_tools.src.stem import azimuth
3+
from pixstem_tools.src.version import __version__

src/stem/azimuth.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from matplotlib.ticker import MultipleLocator
55
from alive_progress import alive_bar
66

7-
class stem:
7+
class azimuth:
88
def discfloat(ci, cj, rmin, rmax, segments):
99
# This is a helper function for polar transformation which generates a meshgrid
1010
# of float values corresponding to r and phi values back in a cartesian i, j frame.

src/version.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = '0.1.7'

0 commit comments

Comments
 (0)