tox_profile/pyproject.toml

40 lines
1008 B
TOML

[project]
name = 'tox_profile'
dependencies = ['toxygen_wrapper', 'yaml', 'msgpack'] # coloredlogs nmap
requires-python = ">= 3.6"
description = "Read and manipulate tox profile files"
keywords = ["tox", "tox_profile"]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Developers",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
]
dynamic = ["version", "readme", ] # cannot be dynamic ['license']
[project.urls]
repository = "https://git.plastiras.org/emdee/tox_profile"
homepage = "https://git.plastiras.org/emdee/tox_profile"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "tox_profile.__version__"}
readme = {file = ["README.md"]}
[project.scripts]
tox_profile = "tox_profile:iMain"