mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-04 07:11:12 +00:00
- remove distutils deps - add pyproject.toml - add MANIFEST.in - update install instructions
30 lines
920 B
TOML
30 lines
920 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel", "cython", "cmake", "scipy", "astropy", "healpy", "extension-helpers", "netCDF4"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "vide"
|
|
version = "2.0"
|
|
description = "The VIDE pipeline analysis for Cosmic Voids"
|
|
readme = "README.md"
|
|
license = { file = "LICENSE" }
|
|
keywords = ["cosmology", "Cosmic Voids", "Voids", "Void Finder", "Void Analysis"]
|
|
requires-python = ">=3.7"
|
|
classifiers = [
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
|
"Natural Language :: English",
|
|
"Programming Language :: C",
|
|
"Programming Language :: C++",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: Implementation :: CPython"
|
|
]
|
|
|
|
dependencies = [
|
|
"scipy",
|
|
"astropy",
|
|
"extension-helpers",
|
|
"netCDF4",
|
|
"healpy"
|
|
]
|