51 lines
No EOL
1.7 KiB
Python
51 lines
No EOL
1.7 KiB
Python
#!/usr/bin/env python3
|
|
# ----------------------------------------------------------------------
|
|
# Copyright (C) 2024 Tristan Hoellinger
|
|
# Distributed under the GNU General Public License v3.0 (GPLv3).
|
|
# See the LICENSE file in the root directory for details.
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
# ----------------------------------------------------------------------
|
|
|
|
__author__ = "Tristan Hoellinger"
|
|
__version__ = "0.1.0"
|
|
__date__ = "2025"
|
|
__license__ = "GPLv3"
|
|
|
|
"""
|
|
Setup script for the WIP-P3M package.
|
|
|
|
Personal package for debugging, testing and non-regression whilst
|
|
implementing P3M gravity in Simbelmynë.
|
|
"""
|
|
|
|
from setuptools import setup, find_packages
|
|
import os
|
|
|
|
# Read the long description from README.md
|
|
here = os.path.abspath(os.path.dirname(__file__))
|
|
with open(os.path.join(here, "../README.md"), encoding="utf-8") as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name="wip3m",
|
|
version="0.1.0",
|
|
author="Tristan Hoellinger",
|
|
author_email="tristan.hoellinger@iap.fr",
|
|
description="Personal package for debugging, testing and non-" \
|
|
"regression whilst implementing P3M gravity in Simbelmynë",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
package_data={"wip3m": ["preamble.tex"]},
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Science/Research",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Scientific/Engineering :: Astronomy",
|
|
],
|
|
python_requires=">=3.7",
|
|
license="GPLv3",
|
|
keywords="cosmology large-scale-structure N-body",
|
|
) |