SageMath_package_template/pyproject.toml
Eloi Torrents 4d7c1a1d12 init
2025-09-21 14:46:51 +02:00

38 lines
1.1 KiB
TOML

[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "demo-sage-package"
version = "0.1.0"
description = "Demo package used alongside SageMath elliptic-curve computations"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Eloi Torrents", email = "eloitor@duck.com" }
]
keywords = ["sagemath", "template", "mathematics"]
license = { file = "LICENSE" }
classifiers = [
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Mathematics"
]
[project.urls]
Documentation = "https://git.32bit.cafe/eloitor/SageMath_package_template"
Source = "https://git.32bit.cafe/eloitor/SageMath_package_template"
Issues = "https://git.32bit.cafe/eloitor/SageMath_package_template/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["demo_package*"]