-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Applying ruff format to the all repo.
- Loading branch information
Showing
6 changed files
with
26 additions
and
28 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,32 +1,30 @@ | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name='xlb', | ||
version='0.2.1', | ||
description='XLB: Accelerated Lattice Boltzmann (XLB) for Physics-based ML', | ||
long_description=open('README.md').read(), | ||
long_description_content_type='text/markdown', | ||
author='Mehdi Ataei', | ||
url='https://github.com/Autodesk/XLB', | ||
license='Apache License 2.0', | ||
name="xlb", | ||
version="0.2.1", | ||
description="XLB: Accelerated Lattice Boltzmann (XLB) for Physics-based ML", | ||
long_description=open("README.md").read(), | ||
long_description_content_type="text/markdown", | ||
author="Mehdi Ataei", | ||
url="https://github.com/Autodesk/XLB", | ||
license="Apache License 2.0", | ||
packages=find_packages(), | ||
install_requires=[ | ||
'matplotlib>=3.9.2', | ||
'numpy>=2.1.2', | ||
'pyvista>=0.44.1', | ||
'trimesh>=4.4.9', | ||
'warp-lang>=1.4.0', | ||
'numpy-stl>=3.1.2', | ||
'pydantic>=2.9.1', | ||
'ruff>=0.6.5', | ||
'jax>=0.4.34' # Base JAX CPU-only requirement | ||
"matplotlib>=3.9.2", | ||
"numpy>=2.1.2", | ||
"pyvista>=0.44.1", | ||
"trimesh>=4.4.9", | ||
"warp-lang>=1.4.0", | ||
"numpy-stl>=3.1.2", | ||
"pydantic>=2.9.1", | ||
"ruff>=0.6.5", | ||
"jax>=0.4.34", # Base JAX CPU-only requirement | ||
], | ||
extras_require={ | ||
'cuda': ['jax[cuda12]>=0.4.34'], # For CUDA installations | ||
'tpu': ['jax[tpu]>=0.4.34'], # For TPU installations | ||
"cuda": ["jax[cuda12]>=0.4.34"], # For CUDA installations | ||
"tpu": ["jax[tpu]>=0.4.34"], # For TPU installations | ||
}, | ||
python_requires='>=3.10', | ||
dependency_links=[ | ||
'https://storage.googleapis.com/jax-releases/libtpu_releases.html' | ||
], | ||
python_requires=">=3.10", | ||
dependency_links=["https://storage.googleapis.com/jax-releases/libtpu_releases.html"], | ||
Check notice on line 29 in setup.py Autodesk Chorus / privacy/bearerexternal_service.third_party: Google Cloud APIs
|
||
) |
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
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