-
Notifications
You must be signed in to change notification settings - Fork 15
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 #10 from spinsphotonics/tweak
v1.0.0 release
- Loading branch information
Showing
8 changed files
with
642 additions
and
105 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
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
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 |
---|---|---|
|
@@ -94,9 +94,9 @@ def build_extension(self, ext): | |
name="fdtdz", | ||
author="Jesse Lu", | ||
author_email="[email protected]", | ||
# url="https://github.com/dfm/extending-jax", | ||
url="https://github.com/spinsphotonics/fdtdz", | ||
license="MIT", | ||
description=("TODO: Write this."), | ||
description=("Fast, scalable, and free photonic simulation"), | ||
long_description=read("README.md"), | ||
long_description_content_type="text/markdown", | ||
packages=find_packages(where="src"), | ||
|
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,6 +1,7 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
__all__ = ["__version__", "fdtdz"] | ||
__all__ = ["__version__", "fdtdz", "residual"] | ||
|
||
from .fdtdz_jax import fdtdz, fdtdz_impl | ||
from .fdtdz_jax import fdtdz | ||
from .residual import residual | ||
from .fdtdz_jax_version import version as __version__ |
Oops, something went wrong.