20 lines
617 B
TOML
20 lines
617 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "stringlist"
|
|
version = "0.0.1"
|
|
authors = [{ name = "Phil Gilmore", email="spgilmore+pypi@gmail.com"}]
|
|
description = "A powerful string list class for Python, inspired by Delphi's TStringList class."
|
|
readme = "README.md"
|
|
requires-python = ">=3.6"
|
|
classifiers = [
|
|
"Programming Language :: Python",
|
|
"Natural Language :: English",
|
|
"License :: OSI Approved :: MIT License"
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.pillidar.com/PillidarPublic/StringListPy"
|
|
Issues = "https://git.pillidar.com/PillidarPublic/StringListPy/issues" |