NuCon/pyproject.toml
2024-10-02 22:36:43 +02:00

31 lines
916 B
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nucon"
version = "0.1.0"
description = "A Python library to interface with and control parameters in the game Nucleares"
authors = [{name = "Dominik Roth", email = "mail@dominik-roth.eu"}]
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"requests",
]
[project.urls]
Homepage = "https://git.dominik-roth.eu/dodox/nucon"
[project.optional-dependencies]
dev = ["pytest"]