30 lines
602 B
TOML
30 lines
602 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "galaxy_ninja"
|
|
version = "0.0.1"
|
|
authors = [
|
|
{ name="Noé Brucy", email="noe@brucy.fr" },
|
|
]
|
|
description = "A useful binning and computation tool for numerical simulations"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
]
|
|
dependencies = [
|
|
"numpy",
|
|
"matplotlib",
|
|
"astropy",
|
|
"h5py",
|
|
"numba",
|
|
"pandas",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.brucy.fr/noe/galaxy_ninja"
|
|
Issues = "https://git.brucy.fr/noe/galaxy_ninja/issues"
|
|
|