-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1363 from ChaosTHL/develop
update
- Loading branch information
Showing
8 changed files
with
249 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
from near_field_data_generator import NearFieldDataFEMGenerator2d | ||
from .near_field_data_generator import NearFieldDataFEMGenerator2d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 0 additions & 46 deletions
46
app/lafem-ims/lafemims/test/test_near_field_data_generator.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
import os | ||
import pathlib | ||
from setuptools import setup, find_packages | ||
|
||
from lafemims import __version__ | ||
|
||
|
||
setup( | ||
name="lafemims", | ||
version=__version__, | ||
description="LaFEM-IMS: Learn-automated FEM Inverse Medium Scattering", | ||
url="", | ||
author="Chaos", | ||
author_email="", | ||
license="GNU", | ||
packages=find_packages(), | ||
python_requires=">=3.8", | ||
) |
Oops, something went wrong.