Skip to content
Snippets Groups Projects
Commit 705dc36e authored by Lukas Kluft's avatar Lukas Kluft
Browse files

Switch to setup.cfg and pytproject.toml

For further information see PEP517/518
parent fca3161c
No related branches found
No related tags found
1 merge request!4Revise handling of package metadata and build-system
[build-system]
requires = ["setuptools>=42", "wheel"] # PEP 508 specifications.
build-backend = "setuptools.build_meta"
[metadata]
name = moist_thermodynamics
version = 0.5.0
description = Constants and functions for the treatment of moist atmospheric thermodynamics.
long_description = file: README.md
license = BSD 3-Clause License
[options]
packages = find:
install_requires =
numpy
scipy
# content of setup.py
from setuptools import setup, find_packages
from setuptools import setup
setup(
name="moist_thermodynamics",
version="0.5",
description="Constants and functions for the treatment of moist atmospheric thermodynamics",
packages=find_packages(),
install_requires=[
"numpy",
"scipy",
],
)
setup()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment