2024-02-02 20:29:33 +01:00
|
|
|
[project]
|
|
|
|
name = 'tox_profile'
|
2024-02-05 14:04:15 +01:00
|
|
|
requires-python = ">= 3.7"
|
2024-02-02 20:29:33 +01:00
|
|
|
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",
|
2024-02-05 14:04:15 +01:00
|
|
|
"License :: OSI Approved",
|
|
|
|
"Operating System :: POSIX :: BSD :: FreeBSD",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
|
|
"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",
|
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
2024-02-02 20:29:33 +01:00
|
|
|
]
|
2024-02-05 14:04:15 +01:00
|
|
|
dynamic = ["version", "readme", "dependencies"] # cannot be dynamic ['license']
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
tox_profile = "tox_profile:iMain"
|
2024-02-02 20:29:33 +01:00
|
|
|
|
|
|
|
[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"]}
|
2024-02-05 14:04:15 +01:00
|
|
|
dependencies = {file = ["requirements.txt"]}
|
2024-02-13 19:21:08 +01:00
|
|
|
|
|
|
|
#[tool.setuptools.packages.find]
|
|
|
|
#where = "src"
|