34 lines
626 B
TOML
34 lines
626 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pytfd-compat"
|
|
version = "0.1.0"
|
|
description = "Python 3 compatibility layer for the original MIT-licensed pytfd API"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "Edin Salkovic"},
|
|
{name = "OpenAI Codex"}
|
|
]
|
|
dependencies = [
|
|
"numpy>=1.26",
|
|
"scipy>=1.12"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.4"
|
|
]
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|