50 lines
1.5 KiB
TOML
50 lines
1.5 KiB
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "numerix"
|
|
dynamic = ["version"]
|
|
dependencies = [
|
|
"numpy",
|
|
]
|
|
requires-python = ">=3.6"
|
|
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://whale.am28.uni-tuebingen.de/git/benda/packagehowto"
|
|
Documentation = "https://whale.am28.uni-tuebingen.de/git/benda/packagehowto/src/branch/master/README.md"
|
|
|
|
#[project.scripts]
|
|
#numerix = "numerix.numerix:main"
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "numerix.version.__version__"}
|
|
|
|
#[tool.pytest.ini_options]
|
|
#pythonpath = "src"
|