[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "numerix"
version = "1.0"
#dynamic = ["version"]
dependencies = [
  "numpy",
]
requires-python = ">=3.2"
authors = [
  {name = "Jan Benda", email = "jan.benda@uni-tuebingen.de"},
]
maintainers = [
  {name = "Jan Benda", email = "jan.benda@uni-tuebingen.de"},
]
description = "Fancy numerical algorithms."
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
    "Development Status :: 2 - Pre-Alpha",
    "Environment :: Console",
    "Intended Audience :: Science/Research",
    "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
    "Natural Language :: English",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.12",
    "Operating System :: OS Independent",
    "Topic :: Multimedia :: Sound/Audio",
    "Topic :: Multimedia :: Sound/Audio :: Analysis",
    "Topic :: Multimedia :: Sound/Audio :: Conversion",
    "Topic :: Scientific/Engineering",
    "Topic :: Software Development :: Libraries :: Python Modules",
]

#[project.urls]
#Repository    = "https://github.com/bendalab/thunderfish"
#Documentation = "https://bendalab.github.io/thunderfish"

#[project.scripts]
#thunderfish   = "thunderfish.thunderfish:main"

#[tool.setuptools.dynamic]
#version = {attr = "thunderfish.version.__version__"}

#[tool.pytest.ini_options]
#pythonpath = "src"