Skip to content

Commit 79fb22e

Browse files
committed
release info
1 parent c166599 commit 79fb22e

File tree

5 files changed

+23
-7
lines changed

5 files changed

+23
-7
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
htmlcov
1010
.coverage
1111

12+
# Build
13+
build
14+
dist
15+
1216
# Paper images
1317
docs/notebooks/img/*.png
1418

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,17 +73,12 @@ gradient = grad(loss)(u_fourier_params)
7373

7474
Before installing `jaxdf`, make sure that [you have installed JAX](https://github.com/google/jax#installation). Follow the instruction to install JAX with NVidia GPU support if you want to use `jaxdf` on the GPUs.
7575

76-
Install jaxdf by `cd` in the repo folder an run
76+
Install jaxdf by cloning the repository or downloading and extracting the compressed archive. Then navigate in the root folder in a terminal, and run
7777
```bash
7878
pip install -r requirements.txt
7979
pip install .
8080
```
8181

82-
If you want to run the notebooks, you should also install the following packages
83-
```bash
84-
pip install jupyterlab, tqdm
85-
```
86-
8782
<br/>
8883

8984
## Citation

jaxdf/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from core import *
2+
import discretization
3+
import geometry
4+
import ode
5+
import operators
6+
import primitives
7+
import spectral
8+
import utils
9+
import version

jaxdf/version.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
__version__ = "0.1.0"
2+
__status ="Development Status :: 2 - Alpha"

setup.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
with open("jaxdf/version.py") as f:
66
exec(f.read(), _dct)
77
__version__ = _dct["__version__"]
8+
__status = _dct["__status"]
89

910
setup(
1011
name="jaxdf",
@@ -19,9 +20,15 @@
1920
extras_require={
2021
"dev": open("_setup/dev_requirements.txt", "r").readlines(),
2122
},
22-
url="https://bug.medphys.ucl.ac.uk/",
23+
url="https://github.com/ucl-bug/jaxdf",
2324
license="GNU Lesser General Public License (LGPL)",
25+
keywords=[
26+
"jax","pde","discretization","differential-equation",
27+
"simulation", "differentiable-programming"],
2428
classifiers=[
29+
"Intended Audience :: Education",
30+
"Intended Audience :: Science/Research",
31+
__status,
2532
"Programming Language :: Python :: 3.7",
2633
"Programming Language :: Python :: 3.8",
2734
"Programming Language :: Python :: 3.9"

0 commit comments

Comments
 (0)