pyproject.toml (34 lines of code) (raw):

[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "guclimate" version = "0.0.1" authors = [ { name="Niels de Hoog", email="njdehoog@gmail.com" }, ] description = "A package for retrieving and processing climate data from the Copernicus Climate Change Service (C3S)" readme = "README.md" requires-python = ">=3.11" classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] [project.scripts] guclimate = "guclimate.cli:app" # Pytest config [tool.pytest.ini_options] minversion = "8.0" addopts = "-v" testpaths = [ "tests", ] python_files = [ "test_*.py", ] norecursedirs = [ ".git", "output", "__pychache__" ]