mirror of
https://github.com/DifferentiableUniverseInitiative/JaxPM.git
synced 2025-02-22 17:47:11 +00:00
11 lines
No EOL
331 B
Python
11 lines
No EOL
331 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='JaxPM',
|
|
version='0.0.1',
|
|
url='https://github.com/DifferentiableUniverseInitiative/JaxPM',
|
|
author='JaxPM developers',
|
|
description='A dead simple FastPM implementation in JAX',
|
|
packages=find_packages(),
|
|
install_requires=['jax', 'jax_cosmo'],
|
|
) |