StellarisModParser/pyproject.toml

28 lines
651 B
TOML
Raw Normal View History

2024-06-16 06:44:36 -04:00
[project]
name = "stellarismodparser"
2024-11-14 12:26:33 -05:00
version = "1.0.6"
2024-06-16 06:44:36 -04:00
authors = [
2024-11-14 12:26:33 -05:00
{ name="cswimr", email="seaswimmerthefsh@gmail.com" },
2024-06-16 06:44:36 -04:00
]
description = "Parse Stellaris's mod descriptor files."
readme = "README.md"
2024-11-14 12:26:33 -05:00
requires-python = ">=3.9"
2024-06-16 06:44:36 -04:00
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
2024-11-14 12:26:33 -05:00
dependencies = [
"semver>=3.0.2",
]
2024-06-16 06:44:36 -04:00
[project.urls]
2024-11-14 12:26:33 -05:00
Homepage = "https://www.coastalcommits.com/cswimr/stellarismodparser"
Issues = "https://www.coastalcommits.com/cswimr/stellarismodparser/issues"
2024-06-16 06:44:36 -04:00
2024-11-14 12:26:33 -05:00
[dependency-groups]
dev = [
"pylint>=3.3.1",
"ruff>=0.7.3",
]