16 lines
464 B
TOML
16 lines
464 B
TOML
[project]
|
|
name = "brewing"
|
|
version = "0.1.0"
|
|
description = "a python package for brewing potions"
|
|
authors = [{ name = "H. Granger", email = "h.granger@hogwarts.ac.uk" }]
|
|
license = { file = "LICENSE.txt" }
|
|
requires-python = ">=3.8"
|
|
dependencies = ["numpy >= 1.14.0", "pytest >= 3.0.0"]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://git.aspp.school/ASPP/2024-heraklion-ODD"
|
|
|
|
[build-system]
|
|
requires = ["setuptools", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|