Skip to content

Commit

Permalink
Added setup for packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdiataei committed Oct 22, 2024
1 parent 24f0ff5 commit 9f6f9a5
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 6 deletions.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -149,4 +149,9 @@ dmypy.json


# Checkpoints (default dir for XLB)
checkpoints/*
checkpoints/*

# Ignore Python packaging build directories
dist/
build/
*.egg-info/
25 changes: 20 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
from setuptools import setup, find_packages

setup(
name="XLB",
version="0.0.1",
author="",
name='xlb',
version='0.2.0',
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=[],
include_package_data=True,
install_requires=[
'jax[cuda]>=0.4.34',
'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'
],
python_requires='>=3.10',
)

0 comments on commit 9f6f9a5

Please sign in to comment.