30 lines
551 B
TOML
30 lines
551 B
TOML
[project]
|
|
name = "numerik"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "DotNaos", email = "schuetzoliver00@gmail.com" }
|
|
]
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"matplotlib>=3.10.1",
|
|
"numpy>=2.2.4",
|
|
"pandas>=2.2.3",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages=[
|
|
"src/serie_1",
|
|
"src/serie_2",
|
|
"src/serie_3",
|
|
"src/serie_4",
|
|
"src/serie_5",
|
|
"src/serie_6",
|
|
"src/serie_7",
|
|
]
|