1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "roman-numerals-py"
description = "This package is deprecated, switch to roman-numerals."
readme.text = """
This package is deprecated, switch to `roman-numerals`__.
__ https://pypi.org/project/roman-numerals/
"""
readme.content-type = "text/x-rst"
version = "4.1.0"
dependencies = [
"roman-numerals==4.1.0",
]
urls.Code = "https://github.com/AA-Turner/roman-numerals/"
urls.Download = "https://pypi.org/project/roman-numerals-py/"
license = "0BSD or CC0-1.0"
requires-python = ">=3.10"
[[project.authors]]
name = "Adam Turner"
|