Skip to content

Commit 9f6f9a5

Browse files
committed
Added setup for packaging
1 parent 24f0ff5 commit 9f6f9a5

File tree

2 files changed

+26
-6
lines changed

2 files changed

+26
-6
lines changed

.gitignore

+6-1
Original file line numberDiff line numberDiff line change
@@ -149,4 +149,9 @@ dmypy.json
149149

150150

151151
# Checkpoints (default dir for XLB)
152-
checkpoints/*
152+
checkpoints/*
153+
154+
# Ignore Python packaging build directories
155+
dist/
156+
build/
157+
*.egg-info/

setup.py

+20-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,25 @@
11
from setuptools import setup, find_packages
22

33
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',
712
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',
1025
)

0 commit comments

Comments
 (0)