Files
greater_tables_project/pyproject.toml
T
Stephen Mildenhall 7ae90b477a Doc and pyproject setup
2025-03-09 09:09:39 +00:00

20 lines
610 B
TOML

[build-system]
requires = ["setuptools", "wheel"] # Tools needed to build the package
build-backend = "setuptools.build_meta"
[project]
name = "greater_tables"
description = "Perfect tables from pandas"
authors = [{name = "Stephen J Mildehall", email = "mynl@me.com" }]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = ["pandas", "bs4"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
[tool.setuptools.dynamic]
version = { attr = "greater_tables.__version__" }