forked from PredictiveIntelligenceLab/jaxpi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 942 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from setuptools import setup, find_packages
import os
_CURRENT_DIR = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(_CURRENT_DIR, "README.md"), encoding="utf-8").read()
except IOError:
README = ""
setup(
name="jaxpi",
version="0.0.1",
url="https://github.com/PredictiveIntelligenceLab/jaxpi",
author="Sifan Wang, Shyam Sankaran, Hanwen Wang",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"absl-py",
"flax",
"jax",
"jaxlib",
"matplotlib",
"ml_collections",
"numpy",
"optax",
"scipy",
"wandb",
],
extras_require={
"testing": ["pytest"],
},
license="Apache 2.0",
description="A library of PINNs models in JAX Flax.",
long_description=open(os.path.join(_CURRENT_DIR, "README.md")).read(),
long_description_content_type="text/markdown",
)