forked from Aquila-Consortium/JaxPM_highres
* moving test dependencies separately * adding manifest to remove unecessary files * updating name of project * Fixing formatting * Adding badge for pypi version * Adding very simple install instructions
20 lines
583 B
TOML
20 lines
583 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "jaxpm"
|
|
dynamic = ["version"]
|
|
description = "A simple Particle-Mesh implementation in JAX"
|
|
authors = [{ name = "JaxPM developers" }]
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = { file = "LICENSE" }
|
|
urls = { "Homepage" = "https://github.com/DifferentiableUniverseInitiative/JaxPM" }
|
|
dependencies = ["jax_cosmo", "jax>=0.4.30", "jaxdecomp>=0.2.2"]
|
|
|
|
[tool.setuptools]
|
|
packages = ["jaxpm"]
|
|
|
|
[tool.setuptools_scm]
|
|
version_file = "jaxpm/_version.py"
|