28 lines
759 B
TOML
28 lines
759 B
TOML
[project]
|
|
name = "tfscript"
|
|
version = "1.0"
|
|
authors = [
|
|
{ name="Nicholas Hope", email="tfscript@nickhope.world" },
|
|
{ name="Paco Hope", email="tfscript@filter.paco.to" }
|
|
]
|
|
description = "Convert YAML into Team Fortress 2 config files"
|
|
readme = "README.md"
|
|
license = { file="LICENSE" }
|
|
requires-python = ">=3.7"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://git.paco.to/tfscript/tfscript"
|
|
"Bug Tracker" = "https://git.paco.to/tfscript/tfscript/issues"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project.scripts]
|
|
tfscript = "tfscript.cli:main"
|