Skip to content

Commit

Permalink
reformat package structure
Browse files Browse the repository at this point in the history
  • Loading branch information
valpesendorfer committed Aug 29, 2023
1 parent 386352f commit 1b6126b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
ext_modules += [
Extension(
"vam.whittaker",
["src/_whittaker.pyx"],
["vam/whittaker/_whittaker.pyx"],
extra_compile_args=["-O3", "-ffast-math"],
)
]
Expand All @@ -35,7 +35,7 @@
ext_modules += [
Extension(
"vam.whittaker",
["src/_whittaker.c"],
["vam/whittaker/_whittaker.c"],
extra_compile_args=["-O3", "-ffast-math"],
)
]
Expand Down
3 changes: 3 additions & 0 deletions vam/whittaker/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from ._version import __version__

__all__ = ("__version__",)
12 changes: 12 additions & 0 deletions vam/whittaker/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
"""
_version
Version information for MODAPE whittaker core
"""

VERSION_MAJOR = 2
VERSION_MINOR = 0
VERSION_PATCH = 2

__version__ = ".".join(VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
File renamed without changes.

0 comments on commit 1b6126b

Please sign in to comment.