Files
greater_tables_project/pyproject.toml
T

19 lines
544 B
TOML

[build-system]
requires = ["setuptools", "wheel"] # Tools needed to build the package
build-backend = "setuptools.build_meta"
[project]
name = "greater_tables"
version = "1.0.0"
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"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]