-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1c8d75e
commit 4f767be
Showing
2 changed files
with
25 additions
and
2 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 |
---|---|---|
|
@@ -8,14 +8,14 @@ | |
|
||
setuptools.setup( | ||
name="tensordiffeq", | ||
version="0.1.4", | ||
version="0.1.5", | ||
author="Levi McClenny", | ||
author_email="[email protected]", | ||
description="Distributed PDE Solver in Tensorflow", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/tensordiffeq/tensordiffeq", | ||
download_url="https://github.com/tensordiffeq/tensordiffeq/tarball/v0.1.4", | ||
download_url="https://github.com/tensordiffeq/tensordiffeq/tarball/v0.1.5", | ||
install_requires=install_requires, | ||
packages=setuptools.find_packages(), | ||
include_package_data=True, | ||
|
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,23 @@ | ||
from __future__ import absolute_import | ||
|
||
from tensordiffeq import models, optimizers, networks, plotting, utils, domains, boundaries, fit, helpers | ||
|
||
# from .models import CollocationSolverND, DiscoveryModel | ||
# from .boundaries import dirichletBC, periodicBC, IC | ||
# from .utils import constant, LatinHypercubeSample, tensor | ||
# from .plotting import newfig, get_griddata | ||
# from .helpers import find_L2_error | ||
# from .optimizers import graph_lbfgs, eager_lbfgs | ||
|
||
|
||
__all__ = [ | ||
"models", | ||
"networks", | ||
"plotting", | ||
"utils", | ||
"helpers", | ||
"optimizers", | ||
"boundaries", | ||
"domains", | ||
"fit", | ||
] |