Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

**Fourier-Laguerre expansions for images of galaxies.**

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/michael-petersen/flex/blob/main/LICENSE)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/ObservationalExpansions/flex/blob/main/LICENSE)



Expand All @@ -11,7 +11,7 @@

Installation of `flex` currently proceeds from local builds after cloning this repository:
```
git clone https://github.com/michael-petersen/flex.git
git clone https://github.com/ObservationalExpansions/flex.git
```

```
Expand Down
15 changes: 1 addition & 14 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,9 @@
from setuptools import setup, Extension
from Cython.Build import cythonize
from setuptools import setup
import numpy as np
Comment thread
michael-petersen marked this conversation as resolved.

extensions = [
Extension(
name="flex.laguerre_cython",
sources=["src/flex/laguerre_cython.pyx"],
include_dirs=[np.get_include()],
)
]

setup(
name="flex",
packages=["flex"],
package_dir={"": "src"},
ext_modules=cythonize(
extensions,
language_level="3",
annotate=True, # generates .html for optimisation insight
),
)
4 changes: 1 addition & 3 deletions src/flex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
for further details and usage instructions.
"""
from .flexbase import FLEX
from .flexnumba import FLEXY
from .flexcython import FLEXC
from importlib.metadata import version

__version__ = version("flex")
__all__ = ["FLEX", "FLEXY", "FLEXC"]
__all__ = ["FLEX"]
195 changes: 0 additions & 195 deletions src/flex/flexcython.py

This file was deleted.

Loading