File tree 2 files changed +26
-6
lines changed
2 files changed +26
-6
lines changed Original file line number Diff line number Diff line change @@ -149,4 +149,9 @@ dmypy.json
149
149
150
150
151
151
# Checkpoints (default dir for XLB)
152
- checkpoints /*
152
+ checkpoints /*
153
+
154
+ # Ignore Python packaging build directories
155
+ dist /
156
+ build /
157
+ * .egg-info /
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
3
3
setup (
4
- name = "XLB" ,
5
- version = "0.0.1" ,
6
- author = "" ,
4
+ name = 'xlb' ,
5
+ version = '0.2.0' ,
6
+ description = 'XLB: Accelerated Lattice Boltzmann (XLB) for Physics-based ML' ,
7
+ long_description = open ('README.md' ).read (),
8
+ long_description_content_type = 'text/markdown' ,
9
+ author = 'Mehdi Ataei' ,
10
+ url = 'https://github.com/Autodesk/XLB' ,
11
+ license = 'Apache License 2.0' ,
7
12
packages = find_packages (),
8
- install_requires = [],
9
- include_package_data = True ,
13
+ install_requires = [
14
+ 'jax[cuda]>=0.4.34' ,
15
+ 'matplotlib>=3.9.2' ,
16
+ 'numpy>=2.1.2' ,
17
+ 'pyvista>=0.44.1' ,
18
+ 'trimesh>=4.4.9' ,
19
+ 'warp-lang>=1.4.0' ,
20
+ 'numpy-stl>=3.1.2' ,
21
+ 'pydantic>=2.9.1' ,
22
+ 'ruff>=0.6.5'
23
+ ],
24
+ python_requires = '>=3.10' ,
10
25
)
You can’t perform that action at this time.
0 commit comments