23 lines
687 B
TOML
23 lines
687 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "EzSequence"
|
|
version = "0.0.1"
|
|
authors = [{ name = "Phil Gilmore", email="spgilmore+pypi@gmail.com"}]
|
|
description = "A simple iterable sequence generator."
|
|
readme = "README.md"
|
|
requires-python = ">=3.6"
|
|
classifiers = [
|
|
"Natural Language :: English",
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
"License :: OSI Approved :: MIT License"
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.pillidar.com/PillidarPublic/EzSequencePy"
|
|
Repository = "https://git.pillidar.com/PillidarPublic/EzSequencePy"
|
|
Issues = "https://git.pillidar.com/PillidarPublic/EzSequencePy/issues"
|