43 lines
1.2 KiB
TOML
43 lines
1.2 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"
|
|
|
|
[project.optional-dependencies]
|
|
test = ["pytest>=8.2"]
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["demo_package*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|